/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.fastfunder-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.fastfunder-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fastfunder-nav-brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.fastfunder-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fastfunder-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.fastfunder-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.fastfunder-nav-link:hover,
.fastfunder-nav-link.active {
    color: #2563eb;
}

.fastfunder-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #f97316);
}

.fastfunder-nav-cta {
    display: flex;
    gap: 1rem;
}

.fastfunder-mobile-menu-btn {
    display: none;
}

/* Buttons */
.fastfunder-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.6rem;
}

.fastfunder-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.fastfunder-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.fastfunder-btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.fastfunder-btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.fastfunder-btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.fastfunder-btn-dark {
    background: #1f2937;
    color: white;
}

.fastfunder-btn-dark:hover {
    background: #111827;
    transform: translateY(-2px);
}

/* Hero Section */
.fastfunder-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.fastfunder-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.fastfunder-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fastfunder-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fastfunder-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fastfunder-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fastfunder-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 330px;
}

.fastfunder-hero-image img {
    width: 330px;
    height: auto;
    border-radius: 20px;
}

/* Features Section */
.fastfunder-features {
    padding: 80px 0;
    background: white;
}

.fastfunder-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.fastfunder-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fastfunder-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fastfunder-feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.fastfunder-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.fastfunder-feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Highlights Section */
.fastfunder-highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.fastfunder-highlights .fastfunder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fastfunder-highlights .fastfunder-section-title {
    color: white;
    text-align: left;
}

.fastfunder-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.fastfunder-highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.fastfunder-highlight-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.fastfunder-highlight-item p {
    color: #cbd5e1;
    font-weight: 500;
}

.fastfunder-partner-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.fastfunder-partner-info p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.fastfunder-partner-info p:last-child {
    margin-bottom: 0;
}

.fastfunder-partner-info strong {
    color: #fbbf24;
}

.fastfunder-highlights img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Testimonials Section */
.fastfunder-testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

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

.fastfunder-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fastfunder-testimonial-card:hover {
    transform: translateY(-5px);
}

.fastfunder-testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.fastfunder-testimonial-card p {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fastfunder-testimonial-card h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.fastfunder-testimonial-card span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Download Section */
.fastfunder-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.fastfunder-download .fastfunder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fastfunder-download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fastfunder-download-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.fastfunder-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fastfunder-download img {
    width: 330px;
    height: auto;
    border-radius: 20px;
}
#google-play-icon{
    width: 200px;
}
/* Footer */
.fastfunder-footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.fastfunder-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.fastfunder-footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.fastfunder-footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.fastfunder-footer-section ul {
    list-style: none;
}

.fastfunder-footer-section ul li {
    margin-bottom: 0.5rem;
}

.fastfunder-footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fastfunder-footer-section ul li a:hover {
    color: #fbbf24;
}

.fastfunder-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.fastfunder-footer .fastfunder-brand-name {
    color: white;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fastfunder-nav-menu {
        display: none;
    }
    
    .fastfunder-nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .fastfunder-nav-menu.active li {
        margin: 0.5rem 0;
    }
    
    .fastfunder-mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .fastfunder-mobile-menu-btn:hover {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }
    
    .fastfunder-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fastfunder-hero-title {
        font-size: 2.5rem;
    }
    
    .fastfunder-highlights .fastfunder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fastfunder-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .fastfunder-download .fastfunder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fastfunder-hero-buttons {
        justify-content: center;
    }
    
    .fastfunder-download-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fastfunder-hero-title {
        font-size: 2rem;
    }
    
    .fastfunder-section-title {
        font-size: 2rem;
    }
    
    .fastfunder-btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 