 :root {
            --primary-blue: #00aaff;
            --primary-dark: #1e40af;
            --accent-blue: #00aaff;
            --text-dark: #1e293b;
            --text-gray: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            background: var(--bg-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-image {
            height: 40px;
            width: auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
        }

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

        .nav-menu a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-blue);
        }

        .btn-primary {
            background: var(--primary-blue);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.3s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 5rem 1.5rem;
            text-align: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-blue {
            background: var(--primary-blue);
            color: white;
        }

        .btn-blue:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }

        .hero-note {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 1.5rem;
        }

        .hero-image {
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding-bottom: 80px;
        }

        .mockup-container {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 8px solid #2a2a2a;
            position: relative;
        }

        .mockup-container::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 30px;
            background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
            border-radius: 0 0 10px 10px;
        }

        .mockup-container::before {
            content: '';
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 10px;
            background: #1a1a1a;
            border-radius: 50%;
        }

        .mockup-screen {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mockup-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
            padding: 2rem;
            border: 2px dashed var(--border-color);
        }

        .screenshot-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .screenshot-image.loaded {
            display: block;
        }

        /* Pricing Banner */
        .pricing-banner {
            background: var(--primary-blue);
            color: white;
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .pricing-banner h2 {
            font-size: 1.75rem;
            font-weight: 700;
        }

        /* Section Header */
        .section-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        /* Features Section */
        .features {
            padding: 5rem 1.5rem;
            background: var(--bg-white);
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .features-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 5rem 1.5rem;
            background: var(--bg-light);
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: var(--bg-white);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary-blue);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .benefit-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        .benefit-label {
            display: inline-block;
            background: var(--bg-light);
            color: var(--primary-blue);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        /* Integration Section */
        .integration {
            padding: 5rem 1.5rem;
            background: var(--bg-white);
        }

        .integration-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .integration-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .integration-content p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .integration-content ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .integration-content li {
            color: var(--text-gray);
            padding: 0.75rem 0;
            padding-left: 1.75rem;
            position: relative;
            line-height: 1.6;
        }

        .integration-content li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .integration-visual {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .integration-logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .integration-badge {
            display: inline-block;
            background: var(--primary-blue);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* CTA Section */
        .final-cta {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }

        .final-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .btn-white {
            background: white;
            color: var(--primary-blue);
        }

        .btn-white:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline-white:hover {
            background: white;
            color: var(--primary-blue);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 1.5rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        
         .footer-section a
         {    
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.875rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 2.25rem;
            }

            .integration-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .nav-menu {
                display: none;
            }

            .features-header h2,
            .integration-content h2,
            .final-cta h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 1.875rem;
            }

            .hero p {
                font-size: 1.05rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
                text-align: center;
            }

            .mockup-container {
                padding: 1.5rem;
            }
        }
		.lnr {color:white;}


        /* WhatsApp Floating Button Styles */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .whatsapp-button:hover {
            background-color: #20BA5A;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-button svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-button {
            animation: pulse 2s infinite;
        }

        /* Options Menu */
        .whatsapp-options {
            position: absolute;
            bottom: 75px;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            min-width: 200px;
            overflow: hidden;
        }

        .whatsapp-options.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .whatsapp-option {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            text-decoration: none;
            color: #333;
            transition: background-color 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .whatsapp-option:last-child {
            border-bottom: none;
        }

        .whatsapp-option:hover {
            background-color: #f5f5f5;
        }

        .whatsapp-option-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            fill: #25D366;
        }

        .whatsapp-option-text {
            display: flex;
            flex-direction: column;
        }

        .whatsapp-option-title {
            font-weight: 600;
            font-size: 14px;
            color: #333;
            margin-bottom: 2px;
        }

        .whatsapp-option-subtitle {
            font-size: 12px;
            color: #666;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                width: 56px;
                height: 56px;
            }

            .whatsapp-button svg {
                width: 32px;
                height: 32px;
            }

            .whatsapp-options {
                bottom: 70px;
                right: -10px;
            }
        }

        /* Close overlay for mobile */
        .whatsapp-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 9998;
            display: none;
        }

        .whatsapp-overlay.active {
            display: block;
        }


        .slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}

/* Dots */
.slideshow-dots {
  text-align: center;
  padding: 20px 0;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}