* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --prosper-primary: #1e3a8a;
    --prosper-primary-light: #3b82f6;
    --prosper-secondary: #f59e0b;
    --prosper-accent: #10b981;
    --prosper-neutral-50: #f8fafc;
    --prosper-neutral-100: #f1f5f9;
    --prosper-neutral-200: #e2e8f0;
    --prosper-neutral-300: #cbd5e1;
    --prosper-neutral-400: #94a3b8;
    --prosper-neutral-500: #64748b;
    --prosper-neutral-600: #475569;
    --prosper-neutral-700: #334155;
    --prosper-neutral-800: #1e293b;
    --prosper-neutral-900: #0f172a;
    --prosper-white: #ffffff;
    --prosper-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --prosper-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --prosper-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --prosper-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --prosper-gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --prosper-gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --prosper-gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--prosper-neutral-800);
    background-color: var(--prosper-white);
    overflow-x: hidden;
}

.prosper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.prosper-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.prosper-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--prosper-neutral-900);
    margin-bottom: 1rem;
    background: var(--prosper-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prosper-section-subtitle {
    font-size: 1.125rem;
    color: var(--prosper-neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.prosper-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--prosper-gradient-primary);
    color: var(--prosper-white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--prosper-shadow-md);
    border: none;
    cursor: pointer;
}

.prosper-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--prosper-shadow-xl);
}

.prosper-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--prosper-primary);
    text-decoration: none;
    border: 2px solid var(--prosper-primary);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.prosper-btn-secondary:hover {
    background: var(--prosper-primary);
    color: var(--prosper-white);
    transform: translateY(-2px);
}

.prosper-btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.prosper-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--prosper-neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.prosper-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.prosper-nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.prosper-company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--prosper-primary);
    background: var(--prosper-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.prosper-footer-company-name {
    font-size: 1.25rem;
    color: var(--prosper-white);
    background: none;
    -webkit-text-fill-color: var(--prosper-white);
    margin-bottom: 1rem;
}


.prosper-nav-link {
    color: var(--prosper-neutral-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.prosper-nav-link:hover,
.prosper-nav-link.active {
    color: var(--prosper-primary);
}

.prosper-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--prosper-gradient-primary);
    border-radius: 1px;
}

.prosper-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prosper-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.prosper-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prosper-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    z-index: -1;
}

.prosper-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prosper-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--prosper-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.prosper-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.prosper-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prosper-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prosper-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prosper-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--prosper-white);
    margin-bottom: 0.5rem;
}

.prosper-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.prosper-services {
    padding: 6rem 0;
    background: var(--prosper-neutral-50);
}

.prosper-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prosper-service-card {
    background: var(--prosper-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--prosper-shadow-lg);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prosper-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--prosper-gradient-primary);
}

.prosper-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--prosper-shadow-xl);
}

.prosper-service-icon {
    font-size: 3rem;
    color: var(--prosper-primary);
    margin: 0 auto 1.5rem;
    display: block;
    text-align: center;
}

.prosper-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--prosper-neutral-900);
    margin-bottom: 1rem;
}

.prosper-service-description {
    color: var(--prosper-neutral-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.prosper-service-link {
    color: var(--prosper-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.prosper-service-link:hover {
    color: var(--prosper-primary-light);
}

.prosper-advantages {
    padding: 6rem 0;
    background: var(--prosper-white);
}

.prosper-advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prosper-advantage-list {
    margin-top: 2rem;
}

.prosper-advantage-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.prosper-advantage-icon {
    font-size: 1.5rem;
    color: var(--prosper-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.prosper-advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--prosper-neutral-900);
    margin-bottom: 0.5rem;
}

.prosper-advantage-description {
    color: var(--prosper-neutral-600);
    line-height: 1.6;
}

.prosper-advantages-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--prosper-shadow-xl);
}

.prosper-testimonials {
    padding: 6rem 0;
    background: var(--prosper-neutral-50);
}

.prosper-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.prosper-testimonial-card {
    background: var(--prosper-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--prosper-shadow-lg);
    transition: all 0.3s ease;
}

.prosper-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--prosper-shadow-xl);
}

.prosper-testimonial-text {
    font-size: 1.125rem;
    color: var(--prosper-neutral-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.prosper-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prosper-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.prosper-testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--prosper-neutral-900);
    margin-bottom: 0.25rem;
}

.prosper-testimonial-role {
    font-size: 0.875rem;
    color: var(--prosper-neutral-500);
}

.prosper-cta {
    padding: 6rem 0;
    background: var(--prosper-gradient-primary);
    color: var(--prosper-white);
    text-align: center;
}

.prosper-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.prosper-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.prosper-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prosper-cta .prosper-btn-secondary {
    color: var(--prosper-white);
    border-color: var(--prosper-white);
}

.prosper-cta .prosper-btn-secondary:hover {
    background: var(--prosper-white);
    color: var(--prosper-primary);
}

.prosper-footer {
    background: var(--prosper-neutral-900);
    color: var(--prosper-neutral-300);
    padding: 6rem 0 3rem;
}

.prosper-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.prosper-footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--prosper-white);
    margin-bottom: 1.5rem;
}

.prosper-footer-description {
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--prosper-neutral-400);
}

.prosper-footer-links {
    list-style: none;
}

.prosper-footer-links li {
    margin-bottom: 0.75rem;
}

.prosper-footer-links a {
    color: var(--prosper-neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.prosper-footer-links a:hover {
    color: var(--prosper-white);
}

.prosper-footer-contact p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
}

.prosper-footer-bottom {
    border-top: 1px solid var(--prosper-neutral-800);
    padding-top: 2.5rem;
    text-align: center;
    color: var(--prosper-neutral-500);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .prosper-container {
        padding: 0 1rem;
    }

    .prosper-nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .prosper-company-name {
        font-size: 1.125rem;
        max-width: calc(100% - 4rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .prosper-nav-menu {
        display: none;
    }

    .prosper-mobile-menu-btn {
        position: absolute !important;
        right: 1rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
        display: block !important;
        background: none !important;
        border: none !important;
        font-size: 1.5rem !important;
        color: var(--prosper-primary) !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        min-width: 2rem !important;
        height: 2rem !important;
    }

    .prosper-hero {
        height: 100vh;
        padding-top: 5rem;
        min-height: 700px;
    }

    .prosper-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .prosper-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .prosper-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    .prosper-hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .prosper-hero-stats {
        margin-top: 1.5rem;
        gap: 0.75rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .prosper-stat-item {
        padding: 0.75rem 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        border-radius: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .prosper-stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .prosper-stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .prosper-advantages-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prosper-section-title {
        font-size: 2rem;
    }

    .prosper-cta-title {
        font-size: 2rem;
    }

    .prosper-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .prosper-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .prosper-footer {
        padding: 4rem 0 2rem;
    }
}