/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - 与index页面保持一致 */
    --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 - 与index页面保持一致 */
    --accent-500: #fbbf24;
    --accent-600: #f59e0b;
    --warning-500: #f59e0b;
    --error-500: #ef4444;
    
    /* Gradients - 与index页面保持一致 */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-dark: linear-gradient(135deg, #1e40af 0%, #3b82f6 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.loansphere-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.loansphere-container-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.consultinggennix-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles - 与index页面保持一致 */
.consultinggennix-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

.consultinggennix-header .consultinggennix-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.consultinggennix-company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.consultinggennix-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-shrink: 1;
    flex-wrap: nowrap;
}

.consultinggennix-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

.consultinggennix-nav-link:hover,
.consultinggennix-nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.consultinggennix-mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.consultinggennix-mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.consultinggennix-mobile-nav-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.consultinggennix-mobile-nav-toggle-active span:nth-child(2) {
    opacity: 0;
}

.consultinggennix-mobile-nav-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 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-secondary);
    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(--primary-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 - 与index页面保持一致 */
.consultinggennix-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 140px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.consultinggennix-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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.consultinggennix-hero .consultinggennix-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.consultinggennix-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultinggennix-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.consultinggennix-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.consultinggennix-hero-buttons {
    display: flex;
    gap: 20px;
}

.consultinggennix-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultinggennix-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

/* 按钮样式 - 与index页面保持一致 */
.consultinggennix-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.consultinggennix-btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.consultinggennix-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
}

.consultinggennix-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.consultinggennix-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer样式 - 与index页面保持一致 */
.consultinggennix-footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.consultinggennix-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
    justify-items: start;
}

.consultinggennix-footer-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.consultinggennix-footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #60a5fa;
    margin-top: 0;
}

.consultinggennix-footer .consultinggennix-company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.consultinggennix-footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-top: 0;
}

.consultinggennix-footer-text {
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.6;
}

.consultinggennix-footer-links {
    list-style: none;
}

.consultinggennix-footer-links li {
    margin-bottom: 12px;
}

.consultinggennix-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.consultinggennix-footer-links a:hover {
    color: #60a5fa;
}

.consultinggennix-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.consultinggennix-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Section样式 - 与index页面保持一致 */
.consultinggennix-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.consultinggennix-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    position: relative;
}

.consultinggennix-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

.consultinggennix-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services样式 - 与index页面保持一致 */
.consultinggennix-core-services {
    padding: 100px 0;
    background: white;
}

.consultinggennix-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.consultinggennix-service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.consultinggennix-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.consultinggennix-service-icon {
    margin-bottom: 25px;
}

.consultinggennix-service-icon .material-icons {
    font-size: 4rem;
    color: #3b82f6;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
}

.consultinggennix-service-card:hover .consultinggennix-service-icon .material-icons {
    transform: scale(1.1);
    color: #1e40af;
}

.consultinggennix-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.consultinggennix-service-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.consultinggennix-service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.consultinggennix-service-link:hover {
    color: #1e40af;
}

/* Privacy Modal样式 - 与index页面保持一致 */
.consultinggennix-privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.consultinggennix-privacy-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.consultinggennix-privacy-modal-show .consultinggennix-privacy-modal-content {
    transform: scale(1);
    opacity: 1;
}

.consultinggennix-privacy-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consultinggennix-privacy-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.consultinggennix-privacy-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultinggennix-privacy-modal-close:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.1);
}

.consultinggennix-privacy-modal-close .material-icons {
    font-size: 1.5rem;
    color: #64748b;
}

.consultinggennix-privacy-modal-body {
    padding: 20px 30px;
}

.consultinggennix-privacy-modal-body p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.consultinggennix-privacy-modal-body a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.consultinggennix-privacy-modal-body a:hover {
    text-decoration: underline;
}

.consultinggennix-privacy-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultinggennix-privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.consultinggennix-privacy-checkbox:hover {
    background: rgba(59, 130, 246, 0.05);
}

.consultinggennix-privacy-checkbox input[type="checkbox"] {
    display: none;
}

.consultinggennix-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.consultinggennix-privacy-checkbox input[type="checkbox"]:checked+.consultinggennix-checkbox-custom {
    background: #3b82f6;
    border-color: #3b82f6;
}

.consultinggennix-privacy-checkbox input[type="checkbox"]:checked+.consultinggennix-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.consultinggennix-privacy-checkbox input[type="checkbox"]:disabled+.consultinggennix-checkbox-custom {
    background: #e2e8f0;
    border-color: #cbd5e1;
    cursor: not-allowed;
}

.consultinggennix-privacy-checkbox span:last-child {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.consultinggennix-privacy-modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.consultinggennix-privacy-modal-footer .consultinggennix-btn {
    border: none !important;
    outline: none !important;
}

/* Cookie Message样式 - 与index页面保持一致 */
.consultinggennix-cookie-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10001;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.consultinggennix-cookie-message-show {
    transform: translateX(0);
    opacity: 1;
}

.consultinggennix-cookie-message .material-icons {
    font-size: 1.2rem;
}


/* Footer响应式样式 - 与index页面保持一致 */
@media (max-width: 1024px) and (min-width: 769px) {
    .consultinggennix-footer-content {
        gap: 40px;
        justify-items: start;
    }
}

@media (max-width: 768px) {
    .consultinggennix-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .consultinggennix-footer-section {
        align-items: center;
    }

    .consultinggennix-footer-links {
        text-align: center;
    }

    .consultinggennix-privacy-modal-content {
        width: 95%;
        margin: 20px;
    }

    .consultinggennix-privacy-modal-header {
        padding: 20px 25px 15px;
    }

    .consultinggennix-privacy-modal-header h2 {
        font-size: 1.3rem;
    }

    .consultinggennix-privacy-modal-body {
        padding: 15px 25px;
    }

    .consultinggennix-privacy-modal-footer {
        padding: 15px 25px 25px;
        flex-direction: column;
    }

    .consultinggennix-privacy-modal-footer .consultinggennix-btn {
        width: 100%;
        text-align: center;
        border: none !important;
    }

    .consultinggennix-cookie-message {
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(100%);
    }

    .consultinggennix-cookie-message-show {
        transform: translateY(0);
    }
}

.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: rgba(251, 191, 36, 0.1);
    color: var(--accent-600);
    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) {
    .consultinggennix-hero .consultinggennix-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .consultinggennix-hero-content {
        order: 1;
    }
    
    .consultinggennix-hero-visual {
        order: 2;
    }
    
    .consultinggennix-hero-title {
        font-size: 2.5rem;
    }
    
    .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;
    }
}

/* Medium Screen Optimization */
@media (max-width: 1024px) and (min-width: 769px) {
    .consultinggennix-company-name {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .consultinggennix-nav-list {
        gap: 20px;
    }

    .consultinggennix-nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .consultinggennix-container {
        padding: 0 20px;
    }

    .consultinggennix-company-name {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }

    .consultinggennix-nav {
        position: relative;
    }

    .consultinggennix-mobile-nav-toggle {
        display: flex;
    }

    .consultinggennix-nav-list {
        gap: 20px;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(30, 64, 175, 0.98);
        padding: 20px;
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        visibility: hidden;
        z-index: 999;
        text-align: center;
        display: flex;
    }

    .consultinggennix-nav-list li {
        margin-bottom: 15px;
    }

    .consultinggennix-nav-link {
        font-size: 18px;
        padding: 15px 20px;
        display: block;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .consultinggennix-nav-link:hover,
    .consultinggennix-nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .consultinggennix-nav-open {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .consultinggennix-hero {
        padding: 100px 0 60px;
    }

    .consultinggennix-hero .consultinggennix-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .consultinggennix-hero-content {
        order: 1;
    }
    
    .consultinggennix-hero-visual {
        order: 2;
    }

    .consultinggennix-hero-title {
        font-size: 2rem;
    }

    .consultinggennix-hero-subtitle {
        font-size: 1.1rem;
    }

    .consultinggennix-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .consultinggennix-btn {
        width: 100%;
        max-width: 280px;
    }

    .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;
    }

    .consultinggennix-nav-list {
        flex-direction: column;
        gap: 10px;
    }
}