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

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

/* Company Header */
.company-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #000000;
    z-index: 1001;
    padding: 1rem 0;
    text-align: center;
}

.company-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    color: #000000;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
}

/* Navigation Header */
.nav-header {
    position: fixed;
    top: 80px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #000000;
    z-index: 1000;
    padding: 1rem 0;
    text-align: center;
}

.nav-menu-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 160px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trending-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #000000;
}

.gradient-text {
    color: #000000;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #000000;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid #000000;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.glitch-btn {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.neon-btn {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Section Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000000;
}

.glitch-text {
    position: relative;
    color: #000000;
}

.neon-text {
    color: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
}

/* How It Works Section */
.how-it-works {
    padding: 12rem 0 5rem 0;
    background: #ffffff;
    margin-top: 6rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #000000;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    background: #000000;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: #000000;
}

/* UPI Features Section */
.upi-features {
    padding: 5rem 0;
    background: #ffffff;
}

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

.feature-box {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-box .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-box p {
    color: #000000;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #ffffff;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-intro {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-style: italic;
    color: #000000;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    animation: bounceIn 0.6s ease forwards;
}

.bounce-in:nth-child(1) { animation-delay: 0.1s; }
.bounce-in:nth-child(2) { animation-delay: 0.2s; }
.bounce-in:nth-child(3) { animation-delay: 0.3s; }
.bounce-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes bounceIn {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.feature-icon {
    background: #000000;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    color: #000000;
}

.features-visual {
    position: relative;
}

.feature-card {
    background: rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #000000;
    backdrop-filter: blur(20px);
    max-width: 300px;
}

.feature-card.floating {
    animation: float 6s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.9;
    font-style: italic;
    color: #000000;
}

/* Vibes Section */
.vibes-section {
    padding: 5rem 0;
    background: #ffffff;
}

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.vibe-card {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vibe-card:hover {
    transform: translateY(-10px);
    border-color: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vibe-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.vibe-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vibe-card p {
    color: #000000;
}

.vibe-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000000;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Social Proof */
.social-proof {
    text-align: center;
    margin-top: 4rem;
}

.social-proof h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
}

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

.testimonial {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #000000;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #000000;
}

.testimonial span {
    color: #000000;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.about-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #000000;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    border: 1px solid #000000;
}

.about-feature .feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
}

.about-feature h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-feature p {
    opacity: 0.8;
    font-size: 0.9rem;
    color: #000000;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    text-align: center;
    background: #ffffff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.final-cta p {
    color: #000000;
}

.mega-btn {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.mega-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    border-top: 2px solid #000000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
    color: #ffffff;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ffffff;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-header h1 {
        font-size: 1.8rem;
    }
    
    .nav-menu-center {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-direction: column;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }
    
    main {
        margin-top: 200px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}