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

        body {
            font-family: 'Inter', 'Space Grotesk', sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Animated Background */
        .circuit-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridFlow 25s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gridFlow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Hero Section */
        .hero {
            min-height: 95vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .connection-nodes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .node {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #39FF14;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.6; }
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #39FF14 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
            line-height: 1.2;
        }

        .hero .subtext {
            font-size: 1.4rem;
            color: #b0b0b0;
            max-width: 750px;
            margin-bottom: 45px;
            line-height: 1.7;
            animation: fadeInUp 1s ease;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: #39FF14;
            color: #000000;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
        }

        .btn-primary:hover {
            box-shadow: 0 0 50px rgba(57, 255, 20, 0.8);
            transform: translateY(-3px);
        }

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

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #39FF14;
            color: #39FF14;
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
        }

        /* Section Styling */
        section {
            padding: 100px 20px;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
            color: #39FF14;
            text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
            text-align: center;
            max-width: 850px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        /* Why Partner Section */
        .why-partner {
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, transparent 100%);
        }

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

        .benefit-card {
            background: rgba(26, 26, 26, 0.7);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 20px;
            padding: 45px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
            transform: translateY(-8px);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            background: rgba(57, 255, 20, 0.15);
            border: 3px solid #39FF14;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
            position: relative;
            z-index: 1;
        }

        .benefit-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .benefit-card p {
            color: #b0b0b0;
            line-height: 1.7;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        /* Partnership Models */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .model-card {
            background: rgba(26, 26, 26, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.25);
            border-radius: 18px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .model-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 35px rgba(57, 255, 20, 0.25);
            transform: translateY(-6px);
        }

        .model-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .model-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: #39FF14;
        }

        .model-card p {
            color: #b0b0b0;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .model-card .btn-link {
            color: #39FF14;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .model-card .btn-link:hover {
            gap: 15px;
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        }

        /* Partner Flow */
        .flow-container {
            max-width: 1200px;
            margin: 60px auto;
            background: rgba(26, 26, 26, 0.6);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 25px;
            padding: 60px 40px;
        }

        .flow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
        }

        .flow-step {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }

        .flow-step::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #39FF14;
            opacity: 0.5;
        }

        .flow-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #39FF14 0%, #2dd10d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 800;
            color: #000000;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
        }

        .flow-step h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .flow-step p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Sponsorship Packages */
        .packages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .package-card {
            background: rgba(26, 26, 26, 0.8);
            border: 3px solid rgba(57, 255, 20, 0.3);
            border-radius: 25px;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, transparent, #39FF14, transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .package-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 50px rgba(57, 255, 20, 0.4);
            transform: translateY(-10px) scale(1.02);
        }

        .package-badge {
            display: inline-block;
            padding: 8px 25px;
            background: #39FF14;
            color: #000000;
            font-weight: 800;
            border-radius: 20px;
            margin-bottom: 20px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .package-card h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .package-card .price {
            font-size: 1.1rem;
            color: #b0b0b0;
            margin-bottom: 30px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }

        .package-features li {
            padding: 12px 0;
            color: #b0b0b0;
            border-bottom: 1px solid rgba(57, 255, 20, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .package-features li::before {
            content: '✓';
            color: #39FF14;
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* Partner Logos */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .partner-logo {
            background: rgba(26, 26, 26, 0.7);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 15px;
            padding: 40px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .partner-logo::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(57, 255, 20, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }

        .partner-logo:hover::after {
            width: 300px;
            height: 300px;
        }

        .partner-logo:hover {
            border-color: #39FF14;
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
        }

        .partner-logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: #39FF14;
            position: relative;
            z-index: 1;
        }

        .partner-category {
            text-align: center;
            font-size: 0.85rem;
            color: #666;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonial {
            max-width: 900px;
            margin: 60px auto 0;
            background: rgba(57, 255, 20, 0.05);
            border-left: 4px solid #39FF14;
            padding: 40px 50px;
            border-radius: 15px;
            font-style: italic;
            color: #b0b0b0;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .testimonial-author {
            margin-top: 20px;
            font-style: normal;
            font-weight: 600;
            color: #39FF14;
            font-size: 1rem;
        }

        /* Impact Metrics */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .metric-card {
            background: rgba(26, 26, 26, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.25);
            border-radius: 18px;
            padding: 45px 30px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .metric-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 35px rgba(57, 255, 20, 0.3);
            transform: scale(1.05);
        }

        .metric-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #39FF14;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
            display: block;
        }

        .metric-label {
            color: #b0b0b0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Partnership Form */
        .form-container {
            max-width: 800px;
            margin: 60px auto;
            background: rgba(26, 26, 26, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.25);
            border-radius: 25px;
            padding: 60px 50px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            color: #39FF14;
            font-weight: 700;
            font-size: 1.05rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 18px;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #39FF14;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
        }

        textarea {
            resize: vertical;
            min-height: 140px;
        }

        select {
            cursor: pointer;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            border-top: 2px solid rgba(57, 255, 20, 0.2);
            padding: 60px 20px 35px;
            text-align: center;
        }

        .footer-tagline {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: #39FF14;
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            color: #39FF14;
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        }

        .socials {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(57, 255, 20, 0.1);
            border: 2px solid rgba(57, 255, 20, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #39FF14;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #39FF14;
            color: #000000;
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
            transform: translateY(-5px);
        }

        .copyright {
            color: #666;
            font-size: 0.95rem;
            margin-top: 30px;
        }

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

            .hero .subtext {
                font-size: 1.15rem;
            }

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

            .benefits-grid,
            .models-grid,
            .packages-container,
            .metrics-grid {
                grid-template-columns: 1fr;
            }

            .flow-step::after {
                content: '↓';
                right: 50%;
                top: auto;
                bottom: -25px;
                transform: translateX(50%);
            }

            .form-container {
                padding: 40px 30px;
            }
        }