:root {
    --fc-primary: #0d6efd;
    --fc-dark: #1a1a2e;
    --fc-gradient: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

.hero-section {
    background: var(--fc-gradient);
    color: #fff;
    padding: 5rem 0;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
}

.loan-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.loan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.15);
}

.loan-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fc-primary);
}

.partner-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.partner-scroll::-webkit-scrollbar {
    display: none;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 64px;
    margin-right: 1rem;
    padding: 0.5rem 1.25rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-card .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fc-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--fc-primary);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fc-primary);
}

.progress-step {
    font-size: 0.8rem;
}

.application-form-section {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
    padding: 2rem 0 4rem;
}

.form-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.review-table th {
    width: 40%;
    font-weight: 500;
    color: #6c757d;
}
