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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: white;
        }
        .promo-bar {
            background: linear-gradient(90deg, #ff5f6d, #ffc371); /* eye-catching gradient */
            color: #fff;
            text-align: center;
            padding: 12px 20px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            top: 75px;
            width: 100%;
            z-index: 10;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            }

            .promo-bar p {
            margin: 0;
            }

            .promo-bar .highlight {
            font-weight: 700;
            text-decoration: underline;
            }

            .promo-bar .code {
            background: rgba(255,255,255,0.2);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700;
            }
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .logo-spinner .microphone-elements {
            transform-box: fill-box;
            transform-origin: 50% 47.5%; /* Visual center of microphone elements */
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg) translateZ(0); }
            to { transform: rotate(-360deg) translateZ(0); }
        }

        .loading-bar {
            width: 200px;
            height: 4px;
            background: #f0f0f0;
            border-radius: 2px;
            overflow: hidden;
        }

        .loading-progress {
            width: 0%;
            height: 100%;
            background: #4A90E2;
            border-radius: 2px;
            animation: loading 3s ease-out forwards;
        }

        @keyframes loading {
            to { width: 100%; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 5px solid #4A90E2; /* Added blue border */
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            z-index: 9999;
        }

        .logo-nav {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .company-name {
            font-size: 24px;
            font-weight: 700;
            color: #4A90E2;
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: -1;
            pointer-events: none; /* Added this to prevent interaction issues */
        }

        .hero-content {
            z-index: 1;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 300;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }


        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: #4A90E2;
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            border-radius: 0; /* Removed border rounding */
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
            border: 5px solid white; /* Added white border */
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
            background: white;
            color: #4A90E2;
            border: 5px solid #4A90E2; /* Blue border on hover */
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

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

        /* Pricing Section */
        .pricing-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 35px; /* Increased padding for better spacing */
        }

        .price-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 0px;
            padding: 15px; /* Added padding around the entire grid */
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }

        /* Updated Testimonials CSS */
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%; /* Ensure all testimonials take full height of their grid cell */
        }

        .testimonial-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
            flex-grow: 1; /* This pushes the author info to the bottom */
        }

        .testimonial-author {
            font-weight: 600;
            font-size: larger;
            color: #333;
            margin-top: auto; /* Additional insurance to push to bottom */
        }

        .testimonial-meta {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }

        /* Ensure the grid items are equal height */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            align-items: stretch; /* Make all grid items the same height */
        }

        .stars {
            color: #E2904A; /* Orange-yellow that complements the blue #4A90E2 */
            font-size: 20px;
            margin-bottom: 15px;
        }


        /* As Seen In */
        .as-seen-in {
            text-align: center;
        }

        .logos-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .partner-logo {
            height: 60px; /* Fixed height, width will auto-scale */
            max-width: 150px; /* Maximum width to prevent oversized logos */
            width: auto;
            object-fit: contain; /* Preserves aspect ratio */
            opacity: 0.7;
            filter: grayscale(100%); /* Makes logos grayscale for professional look */
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%); /* Shows color on hover */
            transform: scale(1.05);
        }

        /* CEO Statement */
        .ceo-statement {
            background: #4A90E2;
            color: white;
            text-align: center;
        }

        .ceo-quote {
            font-size: 1.5rem;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .ceo-info {
            font-size: 18px;
            font-weight: 600;
        }

        /* More Info */
        .more-info {
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #4A90E2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: white;
        }
        .feature-icon span {
          cursor: default;
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }

        .feature p {
            color: #666;
            line-height: 1.6;
        }

        /* Join Team */
        .join-team {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .join-team .section-title {
            color: white;
        }

        .join-description {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .join-button {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #4A90E2;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .join-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Ready to Start Section */
        .ready-to-start {
            background: #f8f9fa;
            text-align: center;
        }

        .start-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.7;
            color: #666;
        }

        .start-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .step {
            background: white;
            padding: 30px 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #4A90E2;
            color: white;
            border-radius: 50%;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
        }

        .step p {
            color: #666;
            line-height: 1.6;
        }

        .price-box {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
            max-width: 400px;
            margin: 15px auto; /* Added margin for extra spacing */
            border: 3px solid #4A90E2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }


        .price-content ul li {
            margin-bottom: 12px !important;
        }
        .price-content ul li:last-child {
            margin-bottom: 0 !important;
        }
        .price-box h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .price-box ul {
            padding-left: 20px;
            list-style-type: disc;
            margin-bottom: auto; /* Pushes button to bottom */
        }
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: #4A90E2;
            margin-bottom: 10px;
        }

        .period {
            font-size: 1.2rem;
            font-weight: 400;
            color: #666;
        }

        .price-description {
            color: #666;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .start-now-button {
            display: inline-block;
            padding: 18px 40px;
            background: #4A90E2;
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 0; /* Removed border rounding */
            transition: all 0.3s ease;
            margin-bottom: 15px;
            border: 5px solid white; /* Added white border */
            text-align: center; /* Centered text */
            border-radius: 20px;
        }

        .start-now-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
            background: white;
            color: #4A90E2;
            border: 5px solid #4A90E2; /* Blue border on hover */
        }
        .guarantee {
            color: #28a745;
            font-weight: 600;
            font-size: 14px;
        }

        /* Footer */
        .footer {
            background: #e9ecef;
            padding: 40px 0;
            text-align: center;
            color: #666;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .price-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 15px;
            }

            .company-name {
                font-size: 20px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 18px;
            }

            .section {
                padding: 60px 0;
            }

            .pricing-section {
                padding: 60px 0;
            }

            .pricing-container {
                padding: 0 20px; /* Reduced padding for mobile */
            }

            .price-container {
                gap: 20px;
                padding: 15px 10px; /* Adjusted padding for mobile */
            }

            .section-title {
                font-size: 2rem;
            }

            .logos-grid {
                gap: 30px;
            }

            .ceo-quote {
                font-size: 1.2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .start-steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .price-box {
                padding: 30px 25px;
                margin: 10px auto; /* Reduced margin for mobile */
            }
            
            .price {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .logos-grid {
                flex-direction: column;
                gap: 20px;
            }

            .pricing-container {
                padding: 0 15px;
            }

            .price-container {
                padding: 10px 5px;
            }

            .price-box {
                margin: 8px auto;
            }
        }
        