* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #444bfc;
            --primary-light: rgba(68, 75, 252, 0.1);
            --primary-dark: #3339db;
            --white: #ffffff;
            --black: #000000;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Header */
        .header {
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(68, 75, 252, 0.2);
            z-index: 1000;
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
             width: 100%;
        }
        
        /* .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        } */

        .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; 
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo img {
    width: 40px;  /* Desktop size */
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        width: 36px;  
        height: 36px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 32px; 
        height: 32px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
}
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background: var(--primary);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(68, 75, 252, 0.3);
        }
        
        /* Hero Section */
        .hero {
            padding: 8rem 0 4rem;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-300);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .stat {
            text-align: center;
            padding: 2rem;
            background: rgba(68, 75, 252, 0.1);
            border-radius: 1rem;
            border: 1px solid rgba(68, 75, 252, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }
        
        .stat-label {
            color: var(--gray-300);
            margin-top: 0.5rem;
        }
        
        /* Problems Section - UPDATED FOR DARK THEME */
        .problems-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
        }

        .problems-grid {
            display: grid;
            gap: 3rem;
            margin-top: 4rem;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(68, 75, 252, 0.2);
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: all 0.3s;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(68, 75, 252, 0.2);
            border-color: var(--primary);
        }

        .problem-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(68, 75, 252, 0.1);
            display: flex;
            align-items: center;
        }

        .problem-icon {
            width: 3rem;
            height: 3rem;
            background: var(--primary-light);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .problem-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin: 0;
        }

        .problem-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding: 2rem;
        }

        .problem-status {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .problem-status.current h4 {
            color: #fca5a5;
        }

        .problem-status.solution h4 {
            color: #86efac;
        }

        .status-icon {
            margin-right: 0.5rem;
            font-size: 1.125rem;
        }

        .problem-list, .solution-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .problem-list li, .solution-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            color: var(--gray-300);
        }

        .cross {
            color: #fca5a5;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
            font-weight: 700;
        }

        .check {
            color: #86efac;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
            font-weight: 700;
        }

        /* Enterprise Features Section - UPDATED FOR DARK THEME */
        .enterprise-features {
            padding: 6rem 0;
            background: var(--gray-900);
        }

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

        .enterprise-feature-card {
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(68, 75, 252, 0.2);
            transition: all 0.3s;
            background: rgba(255, 255, 255, 0.05);
        }

        .enterprise-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(68, 75, 252, 0.2);
            border-color: var(--primary);
        }

        .enterprise-feature-icon {
            width: 3rem;
            height: 3rem;
            background: var(--primary-light);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .enterprise-feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .enterprise-feature-description {
            color: var(--gray-300);
            line-height: 1.6;
            font-size: 0.875rem;
        }

        /* Developer Benefits Section */
        .developer-benefits {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a8a 50%, var(--gray-900) 100%);
            color: var(--white);
        }

        .dev-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(68, 75, 252, 0.2);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .dev-icon {
            margin-right: 0.5rem;
        }

        .dev-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 4rem 0;
        }

        .dev-card {
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid transparent;
        }

        .dev-card.without {
            background: rgba(220, 38, 38, 0.1);
            border-color: rgba(220, 38, 38, 0.3);
        }

        .dev-card.with {
            background: rgba(34, 197, 94, 0.1);
            border-color: rgba(34, 197, 94, 0.3);
        }

        .dev-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .dev-icon-large {
            margin-right: 0.75rem;
            font-size: 1.5rem;
        }

        .dev-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .dev-card.without .dev-card-title {
            color: #fca5a5;
        }

        .dev-card.with .dev-card-title {
            color: #86efac;
        }

        .dev-time {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            color: var(--gray-300);
            font-weight: 600;
        }

        .time-icon {
            margin-right: 0.5rem;
        }

        .dev-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .dev-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            color: var(--gray-300);
        }

        .list-icon {
            margin-right: 0.75rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        .dev-endpoints {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
        }

        .endpoints-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--white);
        }

        .endpoints-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .endpoint-card {
            background: rgba(68, 75, 252, 0.2);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
        }

        .endpoint-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .endpoint-method {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .endpoint-description {
            font-size: 0.875rem;
            color: var(--gray-300);
            margin: 0;
        }
        
        /* Features Section */
        .features {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-300);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(68, 75, 252, 0.2);
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(68, 75, 252, 0.2);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 3rem;
            height: 3rem;
            background: var(--primary);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .feature-description {
            color: var(--gray-300);
            line-height: 1.6;
        }
        
        /* API Sandbox */
        .api-sandbox {
            padding: 6rem 0;
            background: var(--gray-900);
        }
        
        .sandbox-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .api-examples {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .api-example {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(68, 75, 252, 0.2);
            border-radius: 0.5rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .api-example:hover {
            border-color: var(--primary);
        }
        
        .api-example.active {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(68, 75, 252, 0.3);
        }
        
        .api-example-header {
            padding: 1rem;
            border-bottom: 1px solid rgba(68, 75, 252, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .api-method {
            font-weight: 600;
            font-size: 0.875rem;
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
        }
        
        .api-method.post {
            background: rgba(34, 197, 94, 0.2);
            color: rgb(34, 197, 94);
        }
        
        .api-method.get {
            background: rgba(59, 130, 246, 0.2);
            color: rgb(59, 130, 246);
        }
        
        .api-endpoint {
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.875rem;
            color: var(--gray-300);
        }
        
        .api-title {
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.25rem;
        }
        
        .api-description {
            font-size: 0.875rem;
            color: var(--gray-400);
        }
        
        .code-panel {
            background: var(--black);
            border-radius: 0.5rem;
            border: 1px solid rgba(68, 75, 252, 0.2);
            overflow: hidden;
        }
        
        .code-header {
            background: rgba(68, 75, 252, 0.1);
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(68, 75, 252, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .code-tabs {
            display: flex;
            gap: 1rem;
        }
        
        .code-tab {
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .code-tab.active {
            background: var(--primary);
            color: var(--white);
        }
        
        .code-tab:not(.active) {
            color: var(--gray-400);
        }
        
        .code-tab:not(.active):hover {
            background: rgba(68, 75, 252, 0.2);
            color: var(--white);
        }
        
        .copy-button {
            background: rgba(68, 75, 252, 0.2);
            color: var(--primary);
            border: none;
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-button:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        .code-content {
            padding: 1rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.875rem;
            line-height: 1.5;
            overflow-x: auto;
        }
        
        .code-content pre {
            margin: 0;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            align-items: start;
        }
        
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 3rem auto 0;
            }
        }
        
        @media (max-width: 968px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(68, 75, 252, 0.2);
            text-align: center;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            min-height: 500px;
            width: 100%;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .pricing-card .cta-button {
            margin-top: auto;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        
        .pricing-card.featured {
            border-color: var(--primary);
            background: rgba(68, 75, 252, 0.1);
        }
        
        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .pricing-period {
            color: var(--gray-400);
            margin-bottom: 2rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--gray-300);
        }
        
        .pricing-features li:before {
            content: "✓";
            color: var(--primary);
            font-weight: 700;
            margin-right: 0.5rem;
        }
        
        /* Demo Forms */
        .demo-section {
            padding: 6rem 0;
            background: var(--gray-900);
        }

        .demo-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .demo-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(68, 75, 252, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--white);
            font-weight: 600;
        }
        
        .form-input {
            width: 100%;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(68, 75, 252, 0.3);
            border-radius: 0.5rem;
            color: var(--white);
            font-size: 1rem;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(68, 75, 252, 0.2);
        }
        
        .form-input::placeholder {
            color: var(--gray-400);
        }
        
        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .form-button {
            width: 100%;
            padding: 0.75rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .form-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .form-button:disabled {
            background: var(--gray-600);
            cursor: not-allowed;
            transform: none;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(68, 75, 252, 0.3);
            border-radius: 0.5rem;
            color: var(--white);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        
        /* Modal Styles - UPDATED */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 2rem; /* Add padding to prevent modal touching edges */
        }

        .modal.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--gray-900);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--primary);
            max-width: 500px;
            width: 90%;
            max-height: 90vh; /* Prevent modal from being too tall */
            overflow-y: auto; /* Add scrolling if content is too long */
            text-align: center;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            position: relative; /* For positioning the close button */
        }

        .modal.show .modal-content {
            transform: translateY(0);
        }

        /* Close button for modal */
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Enterprise form specific styles */
        .enterprise-form .form-group {
            margin-bottom: 1.5rem;
            text-align: left; /* Left align form fields */
        }

        .enterprise-form .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--white);
            font-weight: 600;
            text-align: left;
        }

        /* Fix form input styling for modal */
        .enterprise-form .form-input,
        .enterprise-form .form-select,
        .enterprise-form .form-textarea {
            width: 100%;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(68, 75, 252, 0.3);
            border-radius: 0.5rem;
            color: var(--white);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        /* Specific select styling for enterprise form */
        .enterprise-form .form-select {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 1rem;
            padding-right: 2.5rem;
            cursor: pointer;
        }

        .enterprise-form .form-select option {
            background: var(--gray-800);
            color: var(--white);
            padding: 0.5rem;
        }

        .enterprise-form .form-input:focus,
        .enterprise-form .form-select:focus,
        .enterprise-form .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(68, 75, 252, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .enterprise-form .form-input::placeholder,
        .enterprise-form .form-textarea::placeholder {
            color: var(--gray-400);
        }

        .enterprise-form .form-textarea {
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }

        .enterprise-form .form-button {
            width: 100%;
            padding: 0.75rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 1rem;
        }

        .enterprise-form .form-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .enterprise-form .form-button:disabled {
            background: var(--gray-600);
            cursor: not-allowed;
            transform: none;
        }
        
        /* Footer */
        .footer {
            padding: 3rem 0 2rem;
            background: var(--black);
            border-top: 1px solid rgba(68, 75, 252, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-section a {
            display: block;
            color: var(--gray-400);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-800);
            color: var(--gray-400);
        }
        

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
  
    .nav {
        justify-content: space-between;
        align-items: center;
    }
    

    
    .hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .sandbox-container {
        grid-template-columns: 1fr;
    }
    
    .demo-forms {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
    }
    
    .enterprise-features-grid {
        grid-template-columns: 1fr;
    }
    
    .dev-comparison {
        grid-template-columns: 1fr;
    }
    
    .endpoints-grid {
        grid-template-columns: 1fr;
    }
}
        
        /* Animation utilities */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .typing-effect::after {
            content: '|';
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Specific select styling */
        .form-select {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 1rem;
            padding-right: 2.5rem;
            cursor: pointer;
        }

        .form-select option {
            background: var(--gray-800);
            color: var(--white);
            padding: 0.5rem;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(68, 75, 252, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: var(--gray-400);
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }

        .form-button {
            width: 100%;
            padding: 0.75rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

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

        .form-button:disabled {
            background: var(--gray-600);
            cursor: not-allowed;
            transform: none;
        }




[data-theme="light"] {
    --primary: #444bfc;
    --primary-light: rgba(68, 75, 252, 0.1);
    --primary-dark: #3339db;
    --white: #111827;
    --black: #ffffff;
    --gray-50: #111827;
    --gray-100: #1f2937;
    --gray-200: #374151;
    --gray-300: #4b5563;
    --gray-400: #6b7280;
    --gray-500: #9ca3af;
    --gray-600: #d1d5db;
    --gray-700: #e5e7eb;
    --gray-800: #f3f4f6;
    --gray-900: #f9fafb;
}

/* Light theme body background */
[data-theme="light"] body {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    color: #111827;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(68, 75, 252, 0.3);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.theme-toggle.mobile {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.75rem;
    justify-content: flex-start;
    margin: 1rem 0;
    background: transparent;
    border: 1px solid rgba(68, 75, 252, 0.3);
}

.theme-toggle .theme-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.theme-toggle .theme-text {
    margin-left: 0.75rem;
    font-weight: 500;
}

/* Theme transition animations */
.theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: var(--white);
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu - UPDATED SPACING */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.mobile-menu-content a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.75rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    display: block;
}

.mobile-menu-content a:hover {
    background: rgba(68, 75, 252, 0.2);
    color: var(--primary);
}

.mobile-menu-content .cta-button {
    background: var(--primary);
    color: var(--white);
    margin-top: 1rem;
    font-size: 1rem;
}

.mobile-menu-content .cta-button:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Theme Toggle for Mobile - UPDATED */
.theme-toggle.mobile {
    width: 100%;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    justify-content: center;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(68, 75, 252, 0.3);
    font-size: 1rem;
}

.theme-toggle.mobile .theme-icon {
    margin-right: 0.5rem;
}



/* Light theme adjustments for mobile menu */
[data-theme="light"] .mobile-menu {
    background: rgba(249, 250, 251, 0.98);
}

[data-theme="light"] .mobile-menu-content a {
    color: #111827;
}

[data-theme="light"] .mobile-menu-content a:hover {
    background: rgba(68, 75, 252, 0.2);
    color: var(--primary);
}

[data-theme="light"] .theme-toggle.mobile {
    background: rgba(17, 24, 39, 0.1);
    color: #111827;
}


/* Responsive Design Updates */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Smooth transitions for theme changes */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Light theme specific overrides for complex gradients */
[data-theme="light"] .hero {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

[data-theme="light"] .problems-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
}

[data-theme="light"] .features {
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
}

[data-theme="light"] .pricing {
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
}

[data-theme="light"] .developer-benefits {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    color: #ffffff !important;
}

/* Light theme text color for gradient text */
[data-theme="light"] .hero h1 {
    background: linear-gradient(135deg, #111827 0%, #444bfc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .developer-benefits .section-title,
[data-theme="light"] .developer-benefits .section-subtitle,
[data-theme="light"] .developer-benefits .endpoints-title {
    color: #ffffff !important;
}

[data-theme="light"] .developer-benefits .dev-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

[data-theme="light"] .developer-benefits .dev-time,
[data-theme="light"] .developer-benefits .dev-list li {
    color: #e5e7eb !important;
}

[data-theme="light"] .developer-benefits .endpoint-method,
[data-theme="light"] .developer-benefits .endpoint-description {
    color: #ffffff !important;
}

/* Fix any blue background sections that need white text in light theme */
[data-theme="light"] .dev-endpoints {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .endpoint-card {
    background: rgba(255, 255, 255, 0.2);
}

/* Ensure all text in developer benefits stays white in light theme */
[data-theme="light"] .developer-benefits * {
    color: inherit;
}

[data-theme="light"] .developer-benefits .dev-card.without .dev-card-title {
    color: #fca5a5 !important;
}

[data-theme="light"] .developer-benefits .dev-card.with .dev-card-title {
    color: #86efac !important;
}

/* Fix header background in light theme */
[data-theme="light"] .header {
    background: rgba(249, 250, 251, 0.95);
    border-bottom: 1px solid rgba(68, 75, 252, 0.2);
}

/* Ensure hamburger lines are visible in light theme */
[data-theme="light"] .hamburger-line {
    background: #111827;
}

/* Fix theme toggle colors in light theme */
[data-theme="light"] .theme-toggle {
    background: rgba(17, 24, 39, 0.1);
    color: #111827;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--primary);
    color: #ffffff;
}