*{
          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) {
            .hero-buttons {
                flex-direction: column !important;
                align-items: center !important;
            }

            .hero-buttons a {
                width: 225px !important;
            }
        }
        @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;
            }
        }
        main {
            padding: 0;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        p {
            font-size: 1.2rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* ============================================
           HERO SECTION - Reused from index.html
           ============================================ */

        .hero-section {
            position: relative;
            min-height: 60vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            background-image: url('Images/grid_3.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .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;
        }

        .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-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 40px;
            text-align: center;
        }

        .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;
        }

        .hero-content h1 span {
            background:
                linear-gradient(
                    90deg,
                    #00e5ff,
                    #67ff9b
                );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            margin-top: 32px;
            margin-left: auto;
            margin-right: auto;
            max-width: 700px;
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255,255,255,0.72);
            font-weight: 300;
        }

        .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;
        }

        .hero-content button:hover {
            transform: translateY(-3px);
            border-color: #00ffff;
            color: #00ffff;
        }

        .hero-content .hero-features {
            margin-top: 24px;
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            font-weight: 400;
        }

        .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);
        }

        .hero-image {
            display: none;
            width: 100%;
            max-height: 620px;
            object-fit: contain;
            border-radius: 16px;
        }

        @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;
            }

            .hero-content button {
                margin-left: auto;
                margin-right: auto;
            }

            .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);
            }
        }

        @media (max-width: 1023px) {
            .hero-image {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 0 20px;
            }

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

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

        /* ============================================
           INTEGRATION PLATFORMS SECTION
           "Meet Your Customers Where They Are"
           Modern SaaS style - 3 horizontal bars
           ============================================ */

        .integration-section {
            background: #0a0f14 url('Images/grid.png') center/cover no-repeat;
            padding: 100px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .integration-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .integration-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .integration-title {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.05em;
            color: #fff;
            margin-bottom: 20px;
        }

        .integration-title span {
            background: linear-gradient(90deg, #00e5ff, #67ff9b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .integration-desc {
            font-size: 17px;
            line-height: 1.65;
            color: rgba(255,255,255,0.72);
            max-width: 620px;
            margin: 0 auto;
        }

        .integration-bars {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .integration-bar {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #121212;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 18px 32px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(40px);
        }

        .integration-bar.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .integration-bar:hover {
            border-color: rgba(0, 229, 255, 0.18);
            box-shadow: 0 25px 50px rgba(0,0,0,0.35);
            transform: translateY(-6px);
        }

        .bar-text {
            flex: 1;
            font-size: 17px;
            line-height: 1.75;
            color: rgba(255,255,255,0.85);
            font-weight: 400;
        }

        .green-highlight {
            color: #fff;
            font-weight: 500;
        }

        .bar-title {
            font-size: 20px;
            font-weight: 600;
            color: #00e5ff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .bar-image {
            flex: none;
            max-width: 680px;
            aspect-ratio: 680 / 280;
            width: 100%;
        }

        .bar-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            display: block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.35s ease;
        }

        .integration-bar:hover .bar-image img {
            transform: scale(1.03);
        }

        /* Tablet (including small tablet) - stack image under text */
        @media (max-width: 1024px) {
            .integration-section {
                padding: 80px 0 100px;
            }

            .integration-bar {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
                gap: 16px;
            }

            .bar-text {
                width: 100%;
                font-size: 16px;
            }

            .bar-title {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .bar-image {
                width: 100%;
                max-width: 100%;
            }

            .bar-image img {
                height: auto;
                object-fit: cover;
            }

            .integration-header {
                margin-bottom: 48px;
            }

            .integration-desc {
                font-size: 15.5px;
            }

            .integration-bars {
                gap: 20px;
            }
        }

        /* Mobile - finer adjustments */
        @media (max-width: 768px) {
            .integration-section {
                padding: 60px 0 80px;
            }

            .integration-bar {
                padding: 16px 20px;
                gap: 16px;
            }

            .bar-text {
                font-size: 15.5px;
            }

            .bar-title {
                font-size: 17px;
            }
        }

        /* ============================================
            PREMIUM SAAS DASHBOARD SECTION
            Sticky scroll with animated cards
            Enterprise AI aesthetic
            ============================================ */

        .dashboard-section {
            background: #0B0F14 url('Images/grid_3.png') center/cover no-repeat;
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header title + subtitle (centered above sticky area) */
        .dashboard-title {
            font-size: clamp(30px, 4.5vw, 52px);
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.05em;
            margin-bottom: 10px;
            text-align: center;
        }

        .dashboard-title span {
            background: linear-gradient(90deg, #00e5ff, #67ff9b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dashboard-subtitle {
            font-size: 18px;
            line-height: 1.65;
            color: rgba(255,255,255,0.72);
            max-width: 520px;
            margin: 0 auto 28px;
            text-align: center;
        }

        /* Two-column sticky layout */
        .saas-sticky-wrapper {
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 64px;
            align-items: start;
        }

        .saas-left {
            position: sticky;
            top: 110px;
            padding-top: 8px;
        }

        .saas-label {
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #67ff9b;
            font-weight: 600;
            margin-bottom: 14px;
            opacity: 0.9;
        }

        .saas-main-title {
            font-size: 26px;
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: #fff;
            margin-bottom: 16px;
        }

        .saas-body {
            font-size: 15px;
            line-height: 1.65;
            color: rgba(255,255,255,0.72);
            margin-bottom: 26px;
        }

        .saas-features {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
            display: grid;
            gap: 8px;
        }

        .saas-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14.5px;
            color: rgba(255,255,255,0.88);
            padding: 3px 0;
        }

        .saas-features li::before {
            content: "●";
            color: #00e5ff;
            font-size: 9px;
            line-height: 1;
            margin-top: 2px;
        }

        .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;
        }

        .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);
        }

        /* Right column - scrollable cards */
        .saas-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .saas-card {
            background: rgba(18, 23, 30, 0.82);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 24px 26px 26px;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 10px 35px rgba(0,0,0,0.38);
            transition: transform 0.55s cubic-bezier(0.23,1,0.32,1),
                        box-shadow 0.5s ease,
                        opacity 0.5s ease;
            opacity: 0.35;
            transform: translateY(55px);
        }

        .saas-card.in-view {
            opacity: 1;
            transform: translateY(0);
            box-shadow: 0 22px 55px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,229,255,0.1) inset, 0 0 38px rgba(0,229,255,0.12);
        }

        .saas-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .saas-card-header h4 {
            font-size: 15.5px;
            font-weight: 600;
            color: #fff;
            margin: 0;
            letter-spacing: -0.01em;
        }

        /* Card 1: Personality */
        .tone-pills {
            display: flex;
            gap: 8px;
            margin-bottom: 18px;
        }
        .tone-pill {
            flex: 1;
            text-align: center;
            padding: 7px 0;
            font-size: 12.5px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.75);
            transition: all .2s ease;
            cursor: default;
        }
        .tone-pill.active {
            border-color: #00e5ff;
            color: #fff;
            background: rgba(0,229,255,0.1);
            box-shadow: 0 0 0 1px rgba(0,229,255,0.3);
        }

        .avatar-preview {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 16px;
            padding: 12px 16px;
            margin-bottom: 16px;
        }
        .avatar-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #67ff9b, #00e5ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: #000;
            font-weight: 700;
        }
        .color-swatches {
            display: flex;
            gap: 8px;
        }
        .swatch {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            border: 2px solid transparent;
            cursor: default;
        }
        .swatch.active {
            border-color: #fff;
            box-shadow: 0 0 0 3px rgba(0,229,255,0.3);
        }

        /* Card 2: Working Hours */
        .schedule-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 9px 14px;
            margin-bottom: 6px;
            font-size: 13px;
        }
        .schedule-row .day {
            font-weight: 500;
            width: 70px;
        }
        .schedule-row .time {
            color: #67ff9b;
            font-family: ui-monospace, monospace;
            font-size: 12.5px;
        }
        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 8px #22c55e;
        }

        /* Card 4: Training */
        .training-chat {
            background: rgba(255,255,255,0.025);
            border-radius: 14px;
            padding: 12px;
            margin-bottom: 14px;
            font-size: 12.5px;
            line-height: 1.5;
        }
        .chat-bubble {
            background: rgba(0,229,255,0.1);
            color: #a5f3fc;
            padding: 6px 11px;
            border-radius: 12px;
            display: inline-block;
            margin: 3px 0;
            max-width: 80%;
        }
        .confidence-bar {
            height: 5px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 6px;
        }
        .confidence-fill {
            height: 100%;
            background: linear-gradient(to right, #67ff9b, #00e5ff);
            border-radius: 3px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .saas-sticky-wrapper {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .saas-left {
                position: static;
                top: auto;
            }
            .saas-right {
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .dashboard-section {
                padding: 50px 0 60px;
            }
            .dashboard-title {
                font-size: clamp(26px, 6vw, 40px);
            }
            .dashboard-subtitle {
                font-size: 16px;
                margin-bottom: 24px;
            }
            .saas-main-title {
                font-size: 22px;
            }
            .saas-cta {
                width: 100%;
                height: 52px;
            }
            .saas-card {
                padding: 20px;
            }
        }

        /* ============================================
           PREMIUM FAQ SECTION
           Modern Enterprise SaaS Accordion
           ============================================ */

        .faq-section {
            background: #000;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-label {
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #67ff9b;
            font-weight: 600;
            margin-bottom: 14px;
            opacity: 0.9;
        }

        .faq-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 16px;
        }

        .faq-desc {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255,255,255,0.7);
            max-width: 620px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .faq-item {
            background: #121212;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .faq-item:hover {
            border-color: rgba(0, 229, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(0,229,255,0.08);
        }

        .faq-item.open {
            border-color: rgba(0, 229, 255, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.35), 0 0 30px rgba(0,229,255,0.15);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 22px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            line-height: 1.4;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            line-height: 1;
            color: #00e5ff;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            margin-top: 2px;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1), 
                        padding 0.3s ease;
            padding: 0 22px;
            color: rgba(255,255,255,0.75);
            font-size: 14.5px;
            line-height: 1.65;
        }

        .faq-item.open .faq-answer {
            max-height: 220px;
            padding-bottom: 20px;
        }

        .faq-cta {
            text-align: center;
            margin-top: 64px;
            padding-top: 48px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .faq-cta-title {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 8px;
        }

        .faq-cta-text {
            color: rgba(255,255,255,0.65);
            font-size: 15px;
            margin-bottom: 28px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .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;
        }

        .faq-secondary-btn:hover {
            border-color: #00e5ff;
            color: #00e5ff;
            transform: translateY(-1px);
        }
    
        #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;
}
