.unified-tooltip{background:linear-gradient(135deg,#4A8FE7 0%,#3b7dd6 100%);color:#fff;border-radius:20px;box-shadow:0 4px 12px rgba(74,143,231,.3);padding:14px 18px;border-radius:20px;font-size:13px;line-height:1.6;text-align:center;white-space:normal;box-shadow:0 4px 12px rgba(74,143,231,.3);margin:8px 12px 0;width:calc(100% - 24px)}

.tooltip{position:absolute!important;top:30px!important;left:50%!important;transform:translateX(-50%)!important;min-width:85vw!important;max-width:92vw!important;width:85vw!important;white-space:normal!important;text-align:center!important;font-size:13px!important;line-height:1.6!important;padding:14px 18px!important;box-sizing:border-box!important;height:auto!important;max-height:none!important;overflow:visible!important}
html{overflow-x:hidden}body{overflow-x:hidden;position:relative;width:100%}.bg-decoration{overflow:hidden;position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none}
<style>html,body{overflow-x:hidden;max-width:100vw}*{box-sizing:border-box}.container,.chat-demo,.bottom-section,.connect-box,.natural-box{max-width:100%;overflow:hidden;padding-left:12px;padding-right:12px}.header-content{max-width:100%;padding-left:12px;padding-right:12px;overflow:visible}</style>
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fc 100%);
            color: #2d3748;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background Elements */
        .bg-decoration {
            position: fixed;
            pointer-events: none;
            z-index: 0;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 143, 231, 0.03) 0%, transparent 70%);
            animation: floatSlow 20s ease-in-out infinite;
        }

        .bg-circle-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .bg-circle-2 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: 10%;
            animation-delay: 5s;
        }

        .bg-circle-3 {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes floatSlow {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            33% { transform: translate(20px, -20px) scale(1.1); opacity: 0.5; }
            66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.4; }
        }

        /* Floating dots */
        .floating-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(74, 143, 231, 0.2);
            border-radius: 50%;
            animation: floatDot 15s ease-in-out infinite;
        }

        @keyframes floatDot {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.6; }
            50% { transform: translateY(-100vh) translateX(50px); opacity: 0.3; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) translateX(0); opacity: 0; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: transparent;
            position: relative;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between; position: relative;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img{
            height: 50px;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        /* Tooltip Styles */
        .nav-link-wrapper {
            position: static;
            display: inline-block;
        }
        nav {
            position: relative;
        }

        nav a {
            color: #4a5568;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #4A8FE7;
        }

        .tooltip {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            transform: none;
            margin-top: 5px;
            background: linear-gradient(135deg, #4A8FE7 0%, #3b7dd6 100%);
            color: white;
            padding: 14px 18px;
            border-radius: 20px;
            font-size: 13px;
            white-space: normal;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(74, 143, 231, 0.3);
            z-index: 1000;
        }

        .tooltip::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #4A8FE7;
        }

        .nav-link-wrapper:hover .tooltip {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .btn-primary {
            background: linear-gradient(135deg, #4A8FE7 0%, #3b7dd6 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(74, 143, 231, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 143, 231, 0.4);
        }

        /* Hero Section */
        .hero {
            padding: 40px 0;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(24px, 7vw, 56px); white-space: nowrap;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #515c6c;
            margin-bottom: 40px;
        }

        .hero-cta {
            font-size: 18px;
            padding: 16px 48px;
        }

        /* Chat Demo Section */
        .chat-demo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            margin-top: 0px;
            position: relative;
            min-height: 400px;
        }

        .chat-left {
            position: relative;
            z-index: 10;
        }

        .plane {
            position: absolute;
            left: 10%;
            top: 50%;
            transform: translateY(-50%) rotate(-20deg);
            opacity: 0.6;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(-50%) rotate(-20deg) translateY(0); }
            50% { transform: translateY(-50%) rotate(-20deg) translateY(-10px); }
        }

        .plane img {
            width: 80px;
            height: auto;
            filter: drop-shadow(0 2px 8px rgba(74, 143, 231, 0.3));
        }

        .chat-messages {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .message {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: left;
            padding-right: 80px;
            opacity: 0;
        }

        /* Fade in from left animation */
        .message.fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Fade in from right animation */
        .message.fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .message-right {
            justify-content: right;
            padding-right: 0;
        }

        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index:1;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .message-bubble {
            padding: 16px 24px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            max-width: 300px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-left:-40px;
            padding-left:40px;
        }

        .message-blue {
            background: linear-gradient(180deg, #77a9ee 0%, #3473cb 100%);
            color: white;
            border-bottom-left-radius: 6px;
            position:relative;
        }
        .message-blue::before{
            position:absolute;
            content:"";
            left:35px;
            bottom:-10px;
            width: 0px;
            height: 0px;
            border-style: solid;
            border-width: 14px 15px 0 0;
            border-color: #3573cb transparent transparent transparent;
            transform: rotate(0deg);
        }
        .message-green {
            background: linear-gradient(180deg, #7ab96b 0%, #509d48 100%);
            color: white;
            border-bottom-right-radius: 10px;
            border-top-right-radius: 10px;
            position:relative;
        }
        .message-green::before{
            position:absolute;
            content:"";
            right:-15px;
            top:10px;
            width: 0px;
            height: 0px;
            border-style: solid;
            border-width: 14px 15px 0 0;
            border-color: #6fb262 transparent transparent transparent;
            transform: rotate(0deg);
        }
        .message-green::after{
            position:absolute;
            content:"";
            right: 15px;
            bottom: -10px;
            width: 0px;
            height: 0px;
            border-style: solid;
            border-width: 0 15px 14px 0;
            border-color: transparent #519e49 transparent transparent;
            transform: rotate(353deg);
            z-index: -1;
        }

        /* Robot Section */
        .robot-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .robot-container {
            position: relative;
            width: 500px;
            min-height: 250px;
            display: flex;
            align-items: end;
            justify-content: center;
        }

        /* Robot Animation */
        .robot-main {
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeInScale 1s ease-out 0.3s forwards;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .robot-main img {
            width: 220px;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
        }

        /* Main Cloud Animation */
        .main-cloud {
            position:absolute;
            z-index:-1;
            bottom:10px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.2s forwards, breathe 4s ease-in-out 2.2s infinite;
        }

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

        @keyframes breathe {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .main-cloud img {
            width:100%;
            object-fit:cover;
        }

        /* Cloud 1 Animation - small cloud top left */
        .cloud1 {
            position: absolute;
            top: 40px;
            left: 0;
            width: 150px;
            opacity: 0;
            animation: fadeInCloud 1s ease-out 1.5s forwards, driftCloud1 8s ease-in-out 2.5s infinite;
        }

        @keyframes fadeInCloud {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes driftCloud1 {
            0%, 100% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(10px) translateY(-5px); }
        }

        .cloud1 img {
            width:100%;
            object-fit:cover;
        }

        /* Cloud 2 Animation - small cloud bottom right */
        .cloud2 {
            position: absolute;
            bottom: 10px;
            right: 30px;
            width: 150px;
            opacity: 0;
            animation: fadeInCloud 1s ease-out 1.7s forwards, driftCloud2 10s ease-in-out 2.7s infinite;
        }

        @keyframes driftCloud2 {
            0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
            25% { transform: translateX(-8px) translateY(5px) rotate(2deg); }
            75% { transform: translateX(8px) translateY(-5px) rotate(-2deg); }
        }

        .cloud2 img {
            width:100%;
            object-fit:cover;
        }

        /* Social Icons */
        .social-icon {
            position: absolute;
            z-index: 3;
            transition: transform 0.3s ease;
            opacity: 0;
            animation: popIn 0.5s ease-out forwards;
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .telegram-icon {
            top: 40%;
            left: 20px;
            animation-delay: 1.8s;
        }

        .whatsapp-icon {
            top:37%;
            right: 20px;
            animation-delay: 2s;
			//animation: pulse 2s ease-in-out infinite 0.5s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .social-icon:hover {
            transform: scale(1.15) rotate(5deg);
        }

        .social-icon img {
            width: 80px;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
        }

        .features-list {
            display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 16px;
			margin-top: 20px;
			width: 100%;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
			padding-left: 15px;
            font-size: 18px;
            color: #2d3748;
            font-weight: 500;
        }

        .checkmark {
            color: #4A8FE7;
            font-size: 24px;
            font-weight: bold;
        }

        /* Bottom Section */
        .bottom-section {
            padding: 80px 0;
            display: flex;
            justify-content: space-between; position: relative;
            align-items: flex-start;
            max-width: 1000px;
            margin: 0 auto;
        }

        .connect-box {
            text-align: center;
        }

        .connect-box h3 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .social-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .social-btn:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .social-btn img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }
        .phone-bottom{
            font-size: 22px;
            font-weight: 700;
            margin-top: 20px;
        }
        .phone-bottom a{
            color: #2c394a;
            transition:all .3s ease;
            cursor:pointer;
        }
        .phone-bottom a:hover{
            color:#6cb360
        }

        .natural-box {
            max-width: 500px;
            display:flex;
            gap:30px;
        }

        .natural-box h3 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .natural-subtitle {
            font-size: 16px;
            color: #515c6c;
            margin-bottom: 30px;
        }

        .example-messages {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .example-bubble {
            background: #e2e8f0;
            padding: 12px 20px;
            border-radius: 18px;
            font-size: 15px;
            color: #2d3748;
            text-shadow: 0 1px 1px #fff;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position:relative;
        }
        .example-bubble::before{
            position:absolute;
            content:"";
            right:-10px;
            bottom:5px;
            width: 0px;  
            height: 0px;
            border-style: solid;
            border-width: 10px 0 0 15px;
            border-color: transparent transparent transparent #E2E8F0;
            transform: rotate(0deg);
        }

        /* Admin Panel Styles */
        .admin-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4A8FE7 0%, #3b7dd6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(74, 143, 231, 0.4);
            z-index: 10000;
            transition: transform 0.3s;
        }

        .admin-toggle:hover {
            transform: scale(1.1);
        }

        .admin-toggle svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .admin-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
            transition: right 0.3s ease;
            z-index: 9999;
            overflow-y: auto;
            padding: 30px;
        }

        .admin-panel.open {
            right: 0;
        }

        .admin-header {
            display: flex;
            justify-content: space-between; position: relative;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
        }

        .admin-header h2 {
            font-size: 24px;
            color: #2d3748;
        }

        .close-admin {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #718096;
            line-height: 1;
        }

        .admin-section {
            margin-bottom: 30px;
        }

        .admin-section h3 {
            font-size: 16px;
            color: #4A8FE7;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .admin-field {
            margin-bottom: 15px;
        }

        .admin-field label {
            display: block;
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .admin-field input,
        .admin-field textarea {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.2s;
        }

        .admin-field input:focus,
        .admin-field textarea:focus {
            outline: none;
            border-color: #4A8FE7;
        }

        .admin-field textarea {
            resize: vertical;
            min-height: 60px;
        }

        .admin-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .btn-save {
            flex: 1;
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .btn-save:hover {
            transform: translateY(-2px);
        }

        .btn-reset {
            flex: 1;
            background: #e2e8f0;
            color: #4a5568;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-reset:hover {
            background: #cbd5e0;
        }

        @media (max-width: 968px) {
            .hero h1 {
                font-size: 42px;
            }

            .chat-demo {
                flex-direction: column;
                gap: 60px;
            }

            .bottom-section {
                flex-direction: column;
                gap: 60px;
                align-items: center;
            }

            .natural-box {
                text-align: center;
				
            }

            .example-messages {
                align-items: center;
            }

            .admin-panel {
                width: 100%;
                right: -100%;
            }
        }

        @media (max-width: 640px) {
.container {
    max-width: 96%;
    margin: 0 2%;
    padding: 0;
    position: relative;
    z-index: 1;
}
.features-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    margin: 20px auto 0;
}
.header-content
 {
    display: block;
   text-align: center;
 }
 
.logo {
    display: block;
}
.nav-link-wrapper
 {
   position: static;
    display: inline-block;
    padding: 15px;
}
nav a {
    font-size: 22px;
}
.tooltip {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 100%
}
            .hero h1 {
                font-size: 32px;
            }

            nav {
                gap: 20px;
            }

            .robot-container {
                transform: scale(0.8);
            }
		.natural-box {
        text-align: center;
        display: block;
		}
 }





.hero h1{font-size:clamp(28px, 8vw, 56px)!important;}
