/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    /* Neutral Colors */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Accent Colors */
    --accent-500: #10b981;
    --accent-600: #059669;
    --warning-500: #f59e0b;
    --error-500: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
}

body {
    font-family: var(--font-family);
    line-height: var(--leading-normal);
    color: var(--neutral-800);
    background: var(--neutral-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.loansphere-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.loansphere-container-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Navigation */
.loansphere-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.loansphere-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.loansphere-logo {
    display: flex;
    align-items: center;
    img{
        margin-right: 10px;
    }
    p{
        font-weight: 700;
        font-size: 22px;
    }
}

.loansphere-logo:hover {
    transform: scale(1.05);
}

.loansphere-nav-menu {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.loansphere-nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-sm) 0;
}

.loansphere-nav-link:hover,
.loansphere-nav-link.active {
    color: var(--primary-600);
}

.loansphere-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.loansphere-nav-cta {
    display: flex;
    align-items: center;
}

/* Buttons */
.loansphere-btn-primary,
.loansphere-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.loansphere-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.loansphere-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.loansphere-btn-primary:active {
    transform: translateY(0);
}

.loansphere-btn-secondary {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--neutral-200);
}

.loansphere-btn-secondary:hover {
    background: var(--primary-50);
    border-color: var(--primary-600);
    transform: translateY(-2px);
}

.loansphere-btn-primary.large,
.loansphere-btn-secondary.large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-lg);
}

.loansphere-btn-primary.small,
.loansphere-btn-secondary.small {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
}

/* Badges */
.loansphere-badge-text {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary-200);
}

/* Hero Section */
.loansphere-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.loansphere-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.loansphere-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.loansphere-hero-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.loansphere-hero-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.loansphere-hero-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.loansphere-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.loansphere-hero-text {
    color: white;
}

.loansphere-hero-badge {
    margin-bottom: var(--space-lg);
}

.loansphere-hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 900;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-xl);
}

.loansphere-title-line {
    display: block;
}

.loansphere-title-accent {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loansphere-hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.loansphere-hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.loansphere-stat-item {
    text-align: center;
}

.loansphere-stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-xs);
}

.loansphere-stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.loansphere-hero-actions {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    flex-wrap: wrap;
}

.loansphere-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loansphere-phone-mockup {
    position: relative;
    z-index: 2;
}

.loansphere-phone-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    transition: transform 0.3s ease;
}

.loansphere-phone-mockup img:hover {
    transform: scale(1.05);
}

.loansphere-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.loansphere-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 200px;
    animation: float 4s ease-in-out infinite;
}

.loansphere-card.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.loansphere-card.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.loansphere-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.loansphere-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.loansphere-card-title {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--font-size-sm);
}

.loansphere-card-desc {
    font-size: var(--font-size-xs);
    color: var(--neutral-600);
}

/* Features Section */
.loansphere-features {
    padding: var(--space-4xl) 0;
    background: white;
}

.loansphere-features-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.loansphere-features-badge {
    margin-bottom: var(--space-lg);
}

.loansphere-section-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--neutral-800);
    position: relative;
}

.loansphere-section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

.loansphere-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.loansphere-feature-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.loansphere-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.loansphere-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.loansphere-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-50);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    transition: transform 0.3s ease;
}

.loansphere-feature-card:hover .loansphere-feature-icon {
    transform: scale(1.1);
}

.loansphere-feature-icon img {
    width: 48px;
    height: 48px;
}

.loansphere-feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.loansphere-feature-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--neutral-800);
}

.loansphere-feature-desc {
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
    font-size: var(--font-size-lg);
}

.loansphere-feature-highlight {
    background: var(--accent-50);
    color: var(--accent-700);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    align-self: flex-start;
}

/* Loan Details Section */
.loansphere-loan-details {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.loansphere-loan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.loansphere-loan-badge {
    margin-bottom: var(--space-lg);
}

.loansphere-loan-description {
    font-size: var(--font-size-xl);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2xl);
}

.loansphere-loan-calculator {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-2xl);
}

.loansphere-calculator-header {
    margin-bottom: var(--space-xl);
}

.loansphere-calculator-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--space-sm);
}

.loansphere-calculator-header p {
    color: var(--neutral-600);
}

.loansphere-calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.loansphere-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.loansphere-input-group label {
    font-weight: 600;
    color: var(--neutral-700);
    font-size: var(--font-size-sm);
}

.loansphere-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.loansphere-input-prefix {
    font-weight: 600;
    color: var(--neutral-600);
}

.loansphere-range-input {
    flex: 1;
    height: 8px;
    background: var(--neutral-200);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
}

.loansphere-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.loansphere-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.loansphere-input-value {
    font-weight: 600;
    color: var(--primary-600);
    min-width: 80px;
    text-align: right;
}

.loansphere-calculator-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--primary-50);
    border-radius: var(--radius-lg);
}

.loansphere-result-item {
    text-align: center;
}

.loansphere-result-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
    margin-bottom: var(--space-xs);
}

.loansphere-result-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-600);
}

.loansphere-loan-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.loansphere-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--neutral-600);
}

.loansphere-feature-item svg {
    color: var(--accent-500);
    flex-shrink: 0;
}

.loansphere-loan-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loansphere-dashboard-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.loansphere-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.loansphere-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 100px;
}

.loansphere-stat-card .loansphere-stat-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--space-xs);
}

.loansphere-stat-card .loansphere-stat-label {
    font-size: var(--font-size-xs);
    color: var(--neutral-600);
}

/* Testimonials Section */
.loansphere-testimonials {
    padding: var(--space-4xl) 0;
    background: white;
}

.loansphere-testimonials-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.loansphere-testimonials-badge {
    margin-bottom: var(--space-lg);
}

.loansphere-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.loansphere-testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
    position: relative;
}

.loansphere-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.loansphere-testimonial-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.loansphere-stars {
    display: flex;
    gap: 2px;
}

.loansphere-stars svg {
    color: var(--warning-500);
}

.loansphere-rating-text {
    font-weight: 600;
    color: var(--neutral-700);
    font-size: var(--font-size-sm);
}

.loansphere-testimonial-content {
    margin-bottom: var(--space-xl);
}

.loansphere-testimonial-content p {
    font-size: var(--font-size-lg);
    line-height: var(--leading-relaxed);
    color: var(--neutral-700);
    font-style: italic;
}

.loansphere-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.loansphere-testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.loansphere-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.loansphere-testimonial-name {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
}

.loansphere-testimonial-role {
    color: var(--neutral-600);
    font-size: var(--font-size-sm);
}

/* CTA Section */
.loansphere-cta {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.loansphere-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.loansphere-cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.loansphere-cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.loansphere-cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 4s;
}

.loansphere-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.loansphere-cta-text {
    color: white;
}

.loansphere-cta-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: white;
}

.loansphere-cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--leading-relaxed);
}

.loansphere-cta-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.loansphere-cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.9);
}

.loansphere-cta-feature svg {
    color: var(--accent-500);
    flex-shrink: 0;
}

.loansphere-cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
}

.loansphere-cta-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.loansphere-trust-badges {
    display: flex;
    gap: var(--space-lg);
}

.loansphere-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

.loansphere-trust-badge svg {
    color: var(--accent-500);
}

.loansphere-trust-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* Footer */
.loansphere-footer {
    background: var(--neutral-900);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.loansphere-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-2xl);
}

.loansphere-footer-brand {
    max-width: 400px;
}

.loansphere-footer-description {
    margin: var(--space-lg) 0;
    color: var(--neutral-400);
    line-height: var(--leading-relaxed);
}

.loansphere-footer-social {
    display: flex;
    gap: var(--space-md);
}

.loansphere-social-link {
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: all 0.3s ease;
}

.loansphere-social-link:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.loansphere-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

.loansphere-footer-column h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: white;
}

.loansphere-footer-column a {
    display: block;
    color: var(--neutral-400);
    text-decoration: none;
    margin-bottom: var(--space-md);
    transition: color 0.3s ease;
}

.loansphere-footer-column a:hover {
    color: var(--primary-400);
}

.loansphere-footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding-top: var(--space-xl);
}

.loansphere-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--neutral-400);
    font-size: var(--font-size-sm);
}

.loansphere-footer-partner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.loansphere-footer-partner a {
    color: var(--primary-400);
    text-decoration: none;
}

.loansphere-footer-partner a:hover {
    color: var(--primary-300);
}

/* Cookies Consent */
.loansphere-cookies-consent {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: var(--space-xl);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.loansphere-cookies-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.loansphere-cookies-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.loansphere-cookies-content p {
    flex: 1;
    color: var(--neutral-600);
    font-size: var(--font-size-sm);
    line-height: var(--leading-relaxed);
}

.loansphere-cookies-actions {
    display: flex;
    gap: var(--space-md);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .loansphere-hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .loansphere-loan-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .loansphere-cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .loansphere-nav-container {
        flex-direction: column;
        height: auto;
        padding: var(--space-lg);
        gap: var(--space-lg);
    }

    .loansphere-nav-menu {
        gap: var(--space-lg);
    }

    .loansphere-hero-title {
        font-size: var(--font-size-4xl);
    }

    .loansphere-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .loansphere-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .loansphere-features-grid {
        grid-template-columns: 1fr;
    }

    .loansphere-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .loansphere-footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .loansphere-footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .loansphere-footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .loansphere-cookies-content {
        flex-direction: column;
        text-align: center;
    }

    .loansphere-cookies-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .loansphere-hero-title {
        font-size: var(--font-size-3xl);
    }

    .loansphere-section-title {
        font-size: var(--font-size-3xl);
    }

    .loansphere-cta-title {
        font-size: var(--font-size-3xl);
    }

    .loansphere-footer-links {
        grid-template-columns: 1fr;
    }

    .loansphere-hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .loansphere-calculator-result {
        grid-template-columns: 1fr;
    }
}