
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: var(--white);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            min-height: 70vh;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path d="M0,0V800H1200V0ZM200,400C200,533,333,600,400,600S600,533,600,400,467,200,400,200,200,267,200,400Z" fill="white"/></svg>');
            background-size: cover;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-content {
            max-width: 850px;
            position: relative;
            z-index: 1;
            margin: 0 auto;
            width: 100%;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--orange);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Typing Animation */
        .typing-container {
            display: inline-block;
            position: relative;
        }

        .typing-text {
            color: var(--orange);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .typing-text::after {
            content: '|';
            position: absolute;
            right: -8px;
            color: var(--orange);
            animation: blink-caret 0.75s step-end infinite;
        }

        @keyframes blink-caret {
            from, to { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Stats Section */
        .stats-block {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.05);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--orange);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .stat-number.animate {
            animation: countUp 2s ease-out forwards;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            opacity: 0.9;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Badge Styles */
        .badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .badge-success {
            background-color: rgba(46, 204, 113, 0.1);
            color: var(--success-green);
            border: 1px solid rgba(46, 204, 113, 0.3);
        }

        .badge-premium {
            background: linear-gradient(135deg, rgba(253, 203, 84, 0.1), rgba(155, 89, 182, 0.1));
            color: var(--orange);
            border: 1px solid rgba(253, 203, 84, 0.3);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid transparent;
            animation: float-card 6s ease-in-out infinite;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--orange);
            animation: none;
        }

        @keyframes float-card {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--white);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
            transition: var(--transition);
            position: relative;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: var(--blue);
            transition: var(--transition);
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Comparison Section */
        .comparison-section {
            background-color: var(--section-bg);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .comparison-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .comparison-card.best-choice {
            border: 2px solid var(--orange);
            transform: scale(1.05);
            position: relative;
        }

        .best-choice-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: var(--dark-blue);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .comparison-list {
            text-align: left;
            margin-top: 20px;
        }

        .comparison-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .comparison-list i {
            color: var(--success-green);
            margin-right: 10px;
            margin-top: 5px;
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid var(--orange);
        }

        .testimonial-stars {
            color: var(--orange);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            color: var(--dark-blue);
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--card-bg);
        }

        .faq-question {
            padding: 20px;
            background: var(--card-bg);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--light-blue);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            background-color: var(--card-bg);
        }

        .faq-item.active .faq-question {
            background-color: var(--light-blue);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path d="M0,0V800H1200V0ZM200,400C200,533,333,600,400,600S600,533,600,400,467,200,400,200,200,267,200,400Z" fill="white"/></svg>');
            background-size: cover;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Click Popup Message */
        .click-popup {
            position: fixed;
            bottom: 120px;
            right: 30px;
            background: linear-gradient(135deg, var(--orange), #ff9d00);
            color: var(--dark-blue);
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(253, 203, 84, 0.4);
            z-index: 9999;
            max-width: 300px;
            transform: translateY(20px) scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
            display: none;
        }

        .click-popup.show {
            transform: translateY(0) scale(1);
            opacity: 1;
            display: block;
        }

        .click-popup::before {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid var(--orange);
        }

        .click-popup-content {
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .click-popup-content i {
            font-size: 1.2rem;
        }

        /* Chatbot Styles */
        .chatbot-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .chatbot-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .chatbot-container {
            width: 100%;
            max-width: 450px;
            height: 700px;
            background-color: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: translateY(20px) scale(0.95);
            transition: var(--transition);
        }

        .chatbot-overlay.active .chatbot-container {
            transform: translateY(0) scale(1);
        }

        .chat-header {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .chat-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--orange);
        }

        .logo-container {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .chat-logo {
            width: 65px;
            height: 65px;
            border-radius: 12px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            border: 2px solid var(--orange);
        }

        .chat-logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .chat-header-info {
            flex: 1;
        }

        .chat-header-info h3 {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .chat-header-info p {
            font-size: 13px;
            opacity: 0.9;
            display: flex;
            align-items: center;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #2ecc71;
            margin-right: 8px;
            display: inline-block;
            animation: status-pulse 2s infinite;
        }

        @keyframes status-pulse {
            0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
            100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
        }

        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .chatbot-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background-color: var(--section-bg);
        }

        .message {
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
            position: relative;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .bot-message {
            background-color: var(--card-bg);
            align-self: flex-start;
            border-bottom-left-radius: 5px;
            border: 1px solid #eaeaea;
        }

        .user-message {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: var(--card-bg);
            border-radius: 18px;
            align-self: flex-start;
            border-bottom-left-radius: 5px;
            max-width: 70px;
            border: 1px solid #eaeaea;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #999;
            margin: 0 2px;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) { animation-delay: -0.32s; }
        .typing-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typing {
            0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }

        .quick-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 15px;
            background-color: var(--card-bg);
            border-top: 1px solid #eee;
        }

        .quick-option {
            background-color: var(--section-bg);
            border: none;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--text-color);
            font-weight: 500;
        }

        .quick-option:hover {
            background-color: var(--dark-blue);
            color: white;
        }

        .chat-input-container {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
            background-color: var(--card-bg);
        }

        .chat-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 30px;
            outline: none;
            font-size: 14px;
            transition: all 0.3s;
            background: var(--card-bg);
            color: var(--text-color);
        }

        .chat-input:focus {
            border-color: var(--dark-blue);
        }

        .send-button {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s;
        }

        .send-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(7, 33, 124, 0.3);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: var(--card-bg);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .nav-actions {
                margin-left: auto;
                gap: 10px;
            }

            /* Hero Mobile Styles */
            .hero {
                padding: 140px 0 60px;
                min-height: 70vh;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 1rem;
                max-width: 90%;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .hero-btns .btn {
                width: 100%;
                max-width: 280px;
                padding: 14px 24px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }

            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }

            .comparison-card.best-choice {
                transform: scale(1);
            }
            
            .stats-block {
                grid-template-columns: repeat(2, 1fr);
                padding: 20px;
                gap: 15px;
            }
            
            .click-popup {
                right: 20px;
                bottom: 100px;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 50px;
                min-height: 65vh;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 25px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 50px;
                margin-bottom: 10px;
            }

            .newsletter-form button {
                border-radius: 50px;
                padding: 12px;
            }

            .logo img {
                height: 60px;
            }
            
            .stats-block {
                grid-template-columns: 1fr;
            }
            
            .chatbot-container {
                width: 95%;
                height: 85vh;
            }
        }