/* 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;
    text-align: 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;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Product Details */
.fastfunder-product-details {
    padding: 80px 0;
    background: white;
}

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

.fastfunder-product-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-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.fastfunder-product-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

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

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

.fastfunder-application-process .fastfunder-section-title {
    color: white;
}

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

.fastfunder-process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.fastfunder-process-step:hover {
    transform: translateY(-5px);
}

.fastfunder-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    color: white;
}

.fastfunder-process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.fastfunder-process-step p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Loan Calculator */
.fastfunder-calculator {
    padding: 80px 0;
    background: #f8fafc;
}

.fastfunder-calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.fastfunder-calculator-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fastfunder-calc-input {
    margin-bottom: 1.5rem;
}

.fastfunder-calc-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.fastfunder-calc-input input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.fastfunder-calc-input input:focus {
    outline: none;
    border-color: #2563eb;
}

.fastfunder-calc-input input[readonly] {
    background-color: #f1f5f9;
    cursor: not-allowed;
}

.fastfunder-calc-result {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fastfunder-calc-result h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
}

.fastfunder-calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.fastfunder-calc-item span:first-child {
    font-weight: 500;
    color: #64748b;
}

.fastfunder-calc-item span:last-child {
    font-weight: 700;
    color: #2563eb;
}

/* Security & Compliance */
.fastfunder-security {
    padding: 80px 0;
    background: white;
}

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

.fastfunder-security-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-security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.fastfunder-faq .fastfunder-section-title {
    color: white;
}

.fastfunder-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.fastfunder-faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.fastfunder-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.fastfunder-faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.fastfunder-faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.fastfunder-faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    transition: transform 0.3s ease;
}

.fastfunder-faq-item.active .fastfunder-faq-toggle {
    transform: rotate(45deg);
}

.fastfunder-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fastfunder-faq-item.active .fastfunder-faq-answer {
    max-height: 200px;
}

.fastfunder-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* 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-title {
        font-size: 2.5rem;
    }
    
    .fastfunder-calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fastfunder-process-grid {
        grid-template-columns: 1fr;
    }
    
    .fastfunder-product-grid {
        grid-template-columns: 1fr;
    }
    
    .fastfunder-security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fastfunder-hero-title {
        font-size: 2rem;
    }
    
    .fastfunder-section-title {
        font-size: 2rem;
    }
    
    .fastfunder-calc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* 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;
} 