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

        body {
            /* Change this line to use Quantico font */
            font-family: 'Quantico', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated background grid */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

       

        .cta-primary {
            background: #ffffff;
            color: #000000;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.95rem;
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
            background: #f0f0f0;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 6rem 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #a0a0a0;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .cta-secondary {
            background: transparent;
            color: #ffffff;
            padding: 0.75rem 2rem;
            border: 2px solid #ffffff;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.95rem;
        }

        .cta-secondary:hover {
            background: #ffffff;
            color: #000000;
            transform: translateY(-2px);
        }

        
        /* Phone Mockup */
        .phone-mockup {
            width: 100%;
            max-width: 290px;
            height: 550px;
            background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
            border-radius: 30px;
            padding: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
            margin: 0 auto;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #ffffff;
            border-radius: 20px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .phone-header {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background: #f8f9fa;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
        }

        .phone-header h3 {
            color: #333;
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
        }

        .message-card {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
            color: #333;
            animation: slideInUp 1s ease-out;
            position: relative;
        }

        .message-card:nth-child(2) { animation-delay: 0.3s; }
        .message-card:nth-child(3) { animation-delay: 0.6s; }
        .message-card:nth-child(4) { animation-delay: 0.9s; }

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

        .message-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #000;
        }

        .message-card p {
            font-size: 0.8rem;
            color: #666;
            margin: 0;
        }

        .message-time {
            position: absolute;
            bottom: 8px;
            right: 12px;
            font-size: 0.7rem;
            color: #999;
        }

        /* Flow Diagram Styles */
        .flow-diagram {
            margin: 3rem 0;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .flow-container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .flow-left {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .flow-item {
            background: #ffffff;
            color: #000000;
            padding: 1rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-align: center;
            font-size: 1rem;
            position: relative;
        }

        .flow-item::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid #ffffff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .flow-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flow-mascot {
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }
        .hero-gif {
    display: flex;
    justify-content: center;
}

.hero-gif img {
    height: 350px;
    max-width: 100%;
    width: auto;
}

@media (max-width: 768px) {
    .hero-gif img {
        height: 200px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-gif img {
        height: 150px;
        max-width: 85%;
    }
}


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

        .flow-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .flow-tokens {
            display: flex;
            gap: 0.5rem;
        }

        .token {
            width: 60px;
            height: 60px;
            background: #ffffff;
            color: #000000;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
        }

        /* Ready to Start Section */
        .ready-to-start {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* How It Works Section Update */
        .how-it-works {
            padding: 6rem 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 4rem;
            color: #ffffff;
            letter-spacing: -1px;
        }

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

        .step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Step Icons */
        .step-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .step h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .step p {
            color: #a0a0a0;
            font-size: 0.95rem;
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
        }

        .features-subtitle {
            font-size: 1.2rem;
            color: #a0a0a0;
            max-width: 400px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            padding: 0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .feature-price {
            color: #a0a0a0;
            font-size: 0.9rem;
        }

        .feature-list {
            padding: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            color: #ffffff;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-item::before {
            content: "✓";
            color: #ffffff;
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.1rem;
        }

        /* Nonprofit Carousel Styles */
        .nonprofit-carousel {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-container {
            margin-top: 3rem;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
        }

        .carousel-track {
            display: flex;
            animation: scroll 20s linear infinite;
            gap: 3rem;
        }

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

        .nonprofit-logo {
            flex: 0 0 200px;
            text-align: center;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .nonprofit-logo:hover {
            opacity: 1;
        }

        .logo-placeholder {
            width: 80px;
            height: 80px;
           
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
           
        }

        .nonprofit-logo p {
            color: #a0a0a0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Footer Styles */
        .footer {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .showcase {
            padding: 6rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .showcase-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .showcase-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            line-height: 1.6;
        }

        .showcase-description {
            font-size: 1.1rem;
            color: #a0a0a0;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .roadmap-link {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid #ffffff;
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }

        .roadmap-link:hover {
            color: #a0a0a0;
            border-bottom-color: #a0a0a0;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .final-cta p {
            font-size: 1.1rem;
            color: #a0a0a0;
            margin-bottom: 2.5rem;
        }

        .cta-large {
            background: #ffffff;
            color: #000000;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-large:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            background: #f0f0f0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 8rem 1rem 2rem;
            }

            .hero-content {
                order: 2;
            }

            .phone-mockup {
                order: 1;
                width: 250px;
                height: 500px;
            }

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

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .flow-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .flow-item::after {
                display: none;
            }

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

            .features-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

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

            .nav {
                flex-direction: column;
                gap: 1rem;
            }

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

            .final-cta h2 {
                font-size: 2rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Stagger animations */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }


        /* Image Cards Section */
.image-cards-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.image-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.image-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.image-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design for Image Cards */
@media (max-width: 1024px) {
    .image-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .image-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-title {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .image-cards-section {
        padding: 4rem 1rem;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-title {
        font-size: 1rem;
        padding: 1rem;
    }



}


.message-card p {
            font-size: 0.8rem;
            color: #666;
            margin: 0;
        }

        .message-time {
            position: absolute;
            bottom: 8px;
            right: 12px;
            font-size: 0.7rem;
            color: #999;
        }

        /* Flow Diagram Styles */
        .flow-diagram {
            margin: 3rem 0;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .flow-container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .flow-left {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .flow-item {
            background: #ffffff;
            color: #000000;
            padding: 1rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-align: center;
            font-size: 1rem;
            position: relative;
        }

        .flow-item::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid #ffffff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .flow-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flow-mascot {
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

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

        .flow-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .flow-tokens {
            display: flex;
            gap: 0.5rem;
        }

        .token {
            width: 60px;
            height: 60px;
            background: #ffffff;
            color: #000000;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
        }

        /* Ready to Start Section */
        .ready-to-start {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* How It Works Section Update */
        .how-it-works {
            padding: 6rem 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 4rem;
            color: #ffffff;
            letter-spacing: -1px;
        }

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

        .step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Step Icons */
        .step-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .step h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .step p {
            color: #a0a0a0;
            font-size: 0.95rem;
        }

        /* Updated Features Section Styles */
        .features-grid-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item-new {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-item-new:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-item-new h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .feature-item-new p {
            color: #a0a0a0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .premium-badge {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: #000;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Subscription Selection Styles */
        .subscription-selection {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .plan-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .plan-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .premium-plan {
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .plan-badge {
            position: absolute;
            top: -1px;
            right: 2rem;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: #000;
            padding: 0.5rem 1.5rem;
            border-radius: 0 0 15px 15px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .plan-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .plan-title {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 900;
            color: #ffffff;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: #a0a0a0;
        }

        .plan-features h4 {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .feature-group {
            margin-bottom: 2rem;
        }

        .feature-group h5 {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .feature-group ul {
            list-style: none;
            padding: 0;
        }

        .feature-group li {
            color: #a0a0a0;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-group li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4ade80;
            font-weight: bold;
        }

        .plan-cta {
            width: 100%;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 2rem;
        }

        .free-cta {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .free-cta:hover {
            background: #ffffff;
            color: #000000;
        }

        .premium-cta {
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: #000000;
        }

        .premium-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .impact-section {
            margin-top: 4rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .impact-section h3 {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .impact-section p {
            color: #a0a0a0;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Nonprofit Carousel Styles */
        .nonprofit-carousel {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-container {
            margin-top: 3rem;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
        }

        .carousel-track {
            display: flex;
            animation: scroll 20s linear infinite;
            gap: 3rem;
        }

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

        .nonprofit-logo {
            flex: 0 0 200px;
            text-align: center;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .nonprofit-logo:hover {
            opacity: 1;
        }

        .logo-placeholder {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nonprofit-logo p {
            color: #a0a0a0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Footer Styles */
        .footer {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .showcase {
            padding: 6rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .showcase-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .showcase-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            line-height: 1.6;
        }

        .showcase-description {
            font-size: 1.1rem;
            color: #a0a0a0;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .roadmap-link {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid #ffffff;
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }

        .roadmap-link:hover {
            color: #a0a0a0;
            border-bottom-color: #a0a0a0;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .final-cta p {
            font-size: 1.1rem;
            color: #a0a0a0;
            margin-bottom: 2.5rem;
        }

        .cta-large {
            background: #ffffff;
            color: #000000;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-large:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            background: #f0f0f0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 8rem 1rem 2rem;
            }

            .hero-content {
                order: 2;
            }

            .phone-mockup {
                order: 1;
                width: 250px;
                height: 500px;
            }

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

            .plans-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .plan-card {
                padding: 2rem;
            }

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

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .flow-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .flow-item::after {
                display: none;
            }

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

            .features-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

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

            .nav {
                flex-direction: column;
                gap: 1rem;
            }

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

            .final-cta h2 {
                font-size: 2rem;
            }
        }

   