
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes gradientX {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        .animate-fadeInScale {
            animation: fadeInScale 0.3s ease-out forwards;
        }
        
        .animate-slideUp {
            animation: slideUp 0.3s ease-out forwards;
        }
        
        .animate-gradientX {
            background-size: 400% 400%;
            animation: gradientX 3s ease infinite;
        }

        .animate-pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        /* Layout */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section {
            padding: 6rem 1rem;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            transition: all 0.5s ease;
        }

        .navbar.scrolled {
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .logo-container{
            display:flex;
            justify-content: center;
        }
        
        .logo-container img {
            display: block;          /* removes inline spacing */
            max-width: 100%;         /* prevents overflow */
            height: auto;            /* maintains aspect ratio */
            }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #22d3ee, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .logo:hover {
            background: linear-gradient(90deg, #06b6d4, #2563eb);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            position: relative;
            transition: all 0.2s ease;
        }

        .nav-links a:hover {
            color: #22d3ee;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -0.25rem;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #22d3ee;
            transition: width 0.2s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
        }

        .mobile-menu-btn:hover {
            background-color: rgba(75, 85, 99, 0.5);
        }

        .mobile-menu {
            display: none;
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(6, 182, 212, 0.1);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-content {
            padding: 1rem;
        }

        .mobile-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            margin-bottom: 0.25rem;
        }

        .mobile-menu a:hover {
            color: #22d3ee;
            background-color: rgba(75, 85, 99, 0.5);
            transform: translateX(0.5rem);
        }

        /* Buttons */
        .btn-primary {
            background-color: #06b6d4;
            color: #111827;
            padding: 1rem 2rem;
            border: none;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #22d3ee;
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #22d3ee;
            padding: 1rem 2rem;
            border: 2px solid rgba(6, 182, 212, 0.5);
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .btn-secondary:hover {
            border-color: #22d3ee;
            color: #06b6d4;
            background-color: rgba(6, 182, 212, 0.05);
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(3rem);
        }

        .hero-bg-1 {
            width: 24rem;
            height: 24rem;
            background-color: rgba(6, 182, 212, 0.2);
            top: -12rem;
            left: -12rem;
        }

        .hero-bg-2 {
            width: 24rem;
            height: 24rem;
            background-color: rgba(59, 130, 246, 0.2);
            bottom: -12rem;
            right: -12rem;
        }

        .hero-bg-3 {
            width: 16rem;
            height: 16rem;
            background-color: rgba(147, 51, 234, 0.1);
            top: 33%;
            right: 25%;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 80rem;
            margin: 0 auto;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem); 
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(90deg, #22d3ee, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: clamp(1.25rem, 3vw, 2rem);
            color: #d1d5db;
            margin-bottom: 3rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            font-size: 0.875rem;
            color: #9ca3af;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s ease;
        }

        .hero-feature:hover {
            color: #22d3ee;
        }

        .hero-logo {
            width: 100%;
            max-width: 600px;
            height: auto;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }

        .hero-logo:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .hero-logo {
                width: 80%;
                max-width: 500px;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-logo {
                width: 85%;
                max-width: 400px;
                margin-bottom: 1rem;
            }
        }

        .check-icon {
            width: 1rem;
            height: 1rem;
            color: #22d3ee;
        }

        /* Features Section */
        .features-section {
            padding: 6rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .features-bg {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), transparent, rgba(59, 130, 246, 0.1));
        }

        .features-container {
            max-width: 80rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }



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

        .feature-card {
            background-color: rgba(17, 24, 39, 0.5);
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: all 0.2s ease;
            cursor: pointer;
            text-align: center;
        }

        .feature-card:hover {
            border-color: rgba(6, 182, 212, 0.4);
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            transition: transform 0.2s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 0.875rem;
            font-weight: bold;
            margin-bottom: 0.75rem;
            color: #22d3ee;
            transition: color 0.2s ease;
        }

        .feature-card:hover .feature-title {
            color: #06b6d4;
        }

        .feature-description {
            color: #d1d5db;
            font-size: 0.75rem;
            line-height: 1.6;
            transition: color 0.2s ease;
        }

        .feature-card:hover .feature-description {
            color: white;
        }

        .feature-cta {
            color: #22d3ee;
            font-size: 0.75rem;
            font-weight: 500;
            margin-top: 1rem;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .feature-card:hover .feature-cta {
            opacity: 1;
        }

        /* Why Section */
        .why-section {
            padding: 6rem 1rem;
            background-color: rgba(17, 24, 39, 0.5);
        }

        .why-container {
            max-width: 64rem;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            font-size: 1.125rem;
            color: #d1d5db;
        }

        .why-card {
            background-color: rgba(31, 41, 55, 0.5);
            border-radius: 0.75rem;
            padding: 2.5rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: all 0.2s ease;
        }

        .why-card:hover {
            border-color: rgba(6, 182, 212, 0.4);
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        .why-card h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #22d3ee;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.2s ease;
        }

        .why-card:hover h3 {
            color: #06b6d4;
        }

        .why-card h3 svg {
            width: 1.5rem;
            height: 1.5rem;
            transition: transform 0.2s ease;
        }

        .why-card:hover h3 svg {
            transform: scale(1.1);
        }

        .why-card p {
            line-height: 1.6;
            transition: color 0.2s ease;
        }

        .why-card:hover p {
            color: white;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 6rem 1rem;
        }

        .testimonials-container {
            max-width: 96rem;
            margin: 0 auto;
        }

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

        .testimonial-card {
            background-color: rgba(17, 24, 39, 0.5);
            border-radius: 0.75rem;
            padding: 2rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: all 0.2s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(6, 182, 212, 0.4);
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            fill: #22d3ee;
            color: #22d3ee;
            transition: transform 0.2s ease;
        }

        .testimonial-card:hover .star {
            transform: scale(1.1);
        }

        .testimonial-text {
            color: #d1d5db;
            margin-bottom: 2rem;
            font-style: italic;
            line-height: 1.6;
            transition: color 0.2s ease;
        }

        .testimonial-card:hover .testimonial-text {
            color: white;
        }

        .testimonial-author {
            border-top: 1px solid rgba(75, 85, 99, 0.5);
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: border-color 0.2s ease;
        }

        .testimonial-card:hover .testimonial-author {
            border-color: rgba(6, 182, 212, 0.3);
        }

        .author-image {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(6, 182, 212, 0.2);
            transition: all 0.2s ease;
        }

        .testimonial-card:hover .author-image {
            border-color: rgba(6, 182, 212, 0.4);
            transform: scale(1.1);
        }

        .author-name {
            font-weight: 600;
            color: #22d3ee;
            transition: color 0.2s ease;
        }

        .testimonial-card:hover .author-name {
            color: #06b6d4;
        }

        .author-role {
            font-size: 0.875rem;
            color: #9ca3af;
            margin-top: 0.25rem;
            transition: color 0.2s ease;
        }

        .testimonial-card:hover .author-role {
            color: #d1d5db;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 6rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .pricing-bg {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), transparent, rgba(59, 130, 246, 0.1));
        }

        .pricing-container {
            max-width: 80rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .pricing-badge {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-badge span {
            display: inline-block;
            background-color: #06b6d4;
            color: #111827;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .pricing-subtitle {
            font-size: 1.25rem;
            color: #d1d5db;
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background-color: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(4px);
            border-radius: 1rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .pricing-card:hover {
            border-color: rgba(6, 182, 212, 0.4);
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        .pricing-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
        }

        .pricing-left {
            padding: 2.5rem;
            text-align: center;
            border-right: 1px solid rgba(6, 182, 212, 0.2);
        }

        .pricing-old {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .pricing-old .currency {
            font-size: 1.5rem;
            color: #22d3ee;
        }

        .pricing-old .amount {
            font-size: 1.875rem;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .pricing-current {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
        }

        .pricing-current .currency {
            font-size: 1.5rem;
            color: #22d3ee;
        }

        .pricing-current .amount {
            font-size: 4rem;
            font-weight: bold;
            color: white;
        }

        .pricing-current .cents {
            font-size: 1.5rem;
            color: #22d3ee;
        }

        .pricing-desc {
            color: #9ca3af;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }

        .pricing-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 0.5rem;
            padding: 1rem;
            margin-bottom: 2rem;
        }

        .pricing-guarantee .dot {
            width: 0.75rem;
            height: 0.75rem;
            background-color: #22c55e;
            border-radius: 50%;
        }

        .pricing-guarantee span {
            color: #22c55e;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .pricing-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .pricing-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(75, 85, 99, 0.5);
            text-align: center;
        }

        .pricing-footer p {
            font-size: 0.875rem;
            color: #9ca3af;
            margin-bottom: 0.25rem;
        }

        .pricing-footer a {
            color: #22d3ee;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

        .pricing-footer a:hover {
            color: #06b6d4;
        }

        .pricing-right {
            padding: 2.5rem;
        }

        .pricing-right h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #22d3ee;
            margin-bottom: 2rem;
        }

        .pricing-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pricing-feature .check {
            width: 1.5rem;
            height: 1.5rem;
            background-color: #06b6d4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pricing-feature .check svg {
            width: 1rem;
            height: 1rem;
            color: #111827;
        }

        .pricing-feature span {
            color: #d1d5db;
            font-size: 1.125rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .contact-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), transparent, rgba(59, 130, 246, 0.05));
        }

        .contact-bg-elements {
            position: absolute;
            width: 24rem;
            height: 24rem;
            background-color: rgba(22, 78, 99, 0.1);
            border-radius: 50%;
            filter: blur(3rem);
            top: 25%;
            left: 25%;
        }

        .contact-container {
            max-width: 64rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .contact-form {
            background-color: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(4px);
            border-radius: 1rem;
            padding: 2.5rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: all 0.2s ease;
        }

        .contact-form:hover {
            border-color: rgba(6, 182, 212, 0.4);
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
        }

        .form-field label {
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            transition: color 0.2s ease;
        }

        .form-field:focus-within label {
            color: #22d3ee;
        }

        .form-field input,
        .form-field textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            background-color: rgba(31, 41, 55, 0.5);
            border: 1px solid #374151;
            border-radius: 0.5rem;
            color: white;
            font-size: 1rem;
            transition: all 0.2s ease;
            backdrop-filter: blur(4px);
        }

        .form-field input:hover,
        .form-field textarea:hover {
            border-color: #4b5563;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: #06b6d4;
            box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
        }

        .form-field textarea {
            resize: none;
            height: 120px;
        }

        .form-submit {
            position: relative;
            width: 100%;
            padding: 1.25rem;
            background-color: #06b6d4;
            color: #111827;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            overflow: hidden;
        }

        .form-submit:hover {
            background-color: #22d3ee;
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.1);
        }

        .form-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #22d3ee, #3b82f6);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .form-submit:hover::before {
            opacity: 1;
        }

        .form-submit span {
            position: relative;
            z-index: 10;
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 50;
        }

        .chat-button {
            background-color: #06b6d4;
            color: #111827;
            padding: 1rem;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.5);
            transition: all 0.2s ease;
        }

        .chat-button:hover {
            background-color: #22d3ee;
            transform: scale(1.05);
        }

        .chat-button svg {
            width: 1.5rem;
            height: 1.5rem;
            transition: transform 0.2s ease;
        }

        .chat-button:hover svg {
            transform: scale(1.1);
        }

        .chat-window {
            background-color: #111827;
            border-radius: 1rem;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
            width: 320px;
            overflow: hidden;
            border: 1px solid rgba(6, 182, 212, 0.2);
            animation: slideUp 0.3s ease-out;
        }

        .chat-header {
            background: linear-gradient(90deg, #06b6d4, #3b82f6);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            font-weight: 600;
            color: #111827;
        }

        .chat-close {
            color: #111827;
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .chat-close:hover {
            color: #374151;
            transform: scale(1.05);
        }

        .chat-close svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .chat-messages {
            height: 320px;
            overflow-y: auto;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .chat-message {
            display: flex;
            animation: fadeInUp 0.6s ease-out;
        }

        .chat-message.user {
            justify-content: flex-end;
        }

        .chat-message.bot {
            justify-content: flex-start;
        }

        .chat-message-content {
            max-width: 80%;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
        }

        .chat-message.user .chat-message-content {
            background-color: #06b6d4;
            color: #111827;
        }

        .chat-message.user .chat-message-content:hover {
            background-color: #22d3ee;
        }

        .chat-message.bot .chat-message-content {
            background-color: #1f2937;
            color: #d1d5db;
        }

        .chat-message.bot .chat-message-content:hover {
            background-color: #374151;
        }

        .chat-input-area {
            padding: 1rem;
            border-top: 1px solid #1f2937;
        }

        .chat-input-container {
            display: flex;
            gap: 0.5rem;
        }

        .chat-input {
            flex: 1;
            padding: 0.5rem 1rem;
            background-color: #1f2937;
            border: none;
            border-radius: 0.5rem;
            color: white;
            transition: all 0.2s ease;
        }

        .chat-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.5);
            transform: scale(1.05);
        }

        .chat-input:hover {
            background-color: #111827;
        }

        .chat-send {
            background-color: #06b6d4;
            color: #111827;
            border: none;
            border-radius: 0.5rem;
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .chat-send:hover {
            background-color: #22d3ee;
            transform: scale(1.05);
        }

        .chat-send svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        /* Modal */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            z-index: 50;
            transition: opacity 0.3s ease;
        }

        .modal-container {
            position: fixed;
            inset: 0;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal {
            background-color: #111827;
            border-radius: 1rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            max-width: 112rem;
            width: 100%;
            max-height: 95vh;
            overflow: hidden;
            box-shadow: 0 20px 25px rgba(6, 182, 212, 0.2);
            animation: fadeInScale 0.3s ease-out;
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            border-bottom: 1px solid #1f2937;
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(4px);
        }

        .modal-header-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .modal-icon {
            font-size: 3rem;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #22d3ee;
        }

        .modal-subtitle {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .modal-nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .modal-nav-btn {
            padding: 0.5rem;
            border-radius: 50%;
            background-color: #1f2937;
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-nav-btn:hover:not(:disabled) {
            background-color: #374151;
            transform: scale(1.1);
        }

        .modal-nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .modal-nav-btn svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .modal-counter {
            font-size: 0.875rem;
            color: #9ca3af;
            min-width: 60px;
            text-align: center;
        }

        .modal-close {
            padding: 0.5rem;
            border-radius: 50%;
            background-color: #1f2937;
            color: white;
            border: none;
            cursor: pointer;
            margin-left: 1rem;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background-color: #374151;
            transform: scale(1.1);
        }

        .modal-close svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .modal-content {
            display: flex;
            flex-direction: column;
            height: calc(95vh - 200px);
        }

        .modal-left {
            width: 100%;
            padding: 2rem;
            overflow-y: auto;
            border-right: 1px solid #1f2937;
        }

        .modal-section {
            margin-bottom: 2rem;
        }

        .modal-section h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }

        .modal-section p {
            color: #d1d5db;
            line-height: 1.6;
        }

        .modal-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .modal-step {
            display: flex;
            gap: 1rem;
        }

        .modal-step-number {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            background-color: #06b6d4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111827;
            font-weight: bold;
            font-size: 0.875rem;
        }

        .modal-step-content h4 {
            font-weight: 600;
            color: #22d3ee;
            margin-bottom: 0.5rem;
        }

        .modal-step-content p {
            color: #d1d5db;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .modal-right {
            width: 100%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .modal-video {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .modal-video-container {
            flex: 1;
            background-color: rgba(31, 41, 55, 0.5);
            border-radius: 0.75rem;
            border: 1px solid rgba(6, 182, 212, 0.1);
            overflow: hidden;
            cursor: pointer;
            position: relative;
            min-height: 300px;
            transition: all 0.3s ease;
        }

        .modal-video-container:hover {
            border-color: rgba(6, 182, 212, 0.2);
        }

        .modal-video-content {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #111827, #1f2937, #111827);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .modal-video-bg {
            position: absolute;
            inset: 0;
            opacity: 0.1;
        }

        .modal-video-bg-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(2rem);
        }

        .modal-video-bg-1 {
            width: 8rem;
            height: 8rem;
            background-color: #22d3ee;
            top: 2.5rem;
            left: 2.5rem;
        }

        .modal-video-bg-2 {
            width: 6rem;
            height: 6rem;
            background-color: #3b82f6;
            bottom: 2.5rem;
            right: 2.5rem;
        }

        .modal-video-bg-3 {
            width: 4rem;
            height: 4rem;
            background-color: #8b5cf6;
            top: 50%;
            right: 25%;
        }

        .modal-video-play {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 1rem;
        }

        .modal-video-play svg {
            width: 4rem;
            height: 4rem;
            color: #22d3ee;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .modal-video-container:hover .modal-video-play svg {
            transform: scale(1.25);
            color: #06b6d4;
        }

        .modal-video-play h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .modal-video-container:hover .modal-video-play h4 {
            color: #06b6d4;
        }

        .modal-video-play p {
            color: #9ca3af;
            max-width: 384px;
            transition: color 0.3s ease;
        }

        .modal-video-container:hover .modal-video-play p {
            color: #d1d5db;
        }

        .modal-video-cta {
            color: #22d3ee;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 1.5rem;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateY(0.5rem);
        }

        .modal-video-container:hover .modal-video-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .modal-video-badges {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .modal-video-badge {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            padding: 0.5rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid rgba(107, 114, 128, 0.2);
        }

        .modal-video-badge.resolution {
            color: #22d3ee;
            border-color: rgba(6, 182, 212, 0.2);
        }

        .modal-video-badge.duration {
            color: white;
            border-color: rgba(107, 114, 128, 0.2);
        }

        /* Footer */
        .footer {
            background-color: #111827;
            padding: 3rem 1rem;
            border-top: 1px solid #1f2937;
        }

        .footer-container {
            max-width: 96rem;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #22d3ee, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            color: #9ca3af;
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            font-size: 0.875rem;
            color: #9ca3af;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #22d3ee;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: #6b7280;
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }

            .pricing-content {
                grid-template-columns: 1fr 1fr;
            }

            .chat-window {
                width: 384px;
            }
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }

            .mobile-menu-btn {
                display: none;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }

            .modal-content {
                flex-direction: row;
            }

            .modal-left,
            .modal-right {
                width: 50%;
            }

            .modal-video-content {
                min-height: 400px;
            }

            .modal-video-play svg {
                width: 5rem;
                height: 5rem;
            }

            .modal-video-play h4 {
                font-size: 1.5rem;
            }

            .modal-video-play p {
                font-size: 1rem;
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Utility Classes */
        .hidden {
            display: none;
        }

        .opacity-0 {
            opacity: 0;
        }

        .opacity-100 {
            opacity: 1;
        }

        .translate-y-8 {
            transform: translateY(2rem);
        }

        .translate-y-0 {
            transform: translateY(0);
        }

        /* Visibility Animation Classes */
        .section-animate {
            opacity: 0;
            transform: translateY(2rem);
            transition: all 1s ease;
        }

        .section-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Add these styles to your existing style.css file */

/* Add these styles to your existing style.css file */

/* Font Awesome Icon Sizes and Styling */
.check-icon {
    width: 1rem;
    height: 1rem;
    color: #22d3ee;
    font-size: 1rem;
}

.btn-secondary i,
.btn-primary i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.why-card h3 i {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #22d3ee;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.pricing-feature .check i {
    font-size: 1rem;
    color: #111827;
}

.chat-button i {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.chat-close i,
.modal-close i {
    font-size: 1.25rem;
}

.chat-send i {
    font-size: 1.25rem;
}

.modal-nav-btn i {
    font-size: 1.25rem;
}

.modal-video-play i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.modal-video-container:hover .modal-video-play i {
    transform: scale(1.25);
    color: #06b6d4;
}

/* FIX: Perfect Circle Buttons */
.modal-nav-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    min-height: 40px;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: #1f2937;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-close {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    min-height: 40px;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: #1f2937;
    color: white;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.chat-button {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    min-height: 60px;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: #06b6d4;
    color: #111827;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px rgba(6, 182, 212, 0.5);
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.chat-close {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    padding: 0 !important;
    border-radius: 50% !important;
    background: none;
    color: #111827;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.chat-send {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    min-height: 40px;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: #06b6d4;
    color: #111827;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hover effects for Font Awesome icons */
.chat-button:hover {
    background-color: #22d3ee;
    transform: scale(1.05);
}

.chat-button:hover i {
    transform: scale(1.1);
}

.why-card:hover h3 i {
    transform: scale(1.1);
}

.testimonial-card:hover .star {
    transform: scale(1.1);
}

.modal-nav-btn:hover:not(:disabled) {
    background-color: #374151;
    transform: scale(1.1);
}

.modal-close:hover {
    background-color: #374151;
    transform: scale(1.1);
}

.chat-close:hover {
    color: #374151;
    transform: scale(1.05);
}

.chat-send:hover {
    background-color: #22d3ee;
    transform: scale(1.05);
}

.gumroad-button.btn-primary {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.gumroad-button.btn-primary:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}