/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.gln-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.gln-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.gln-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.gln-company-name {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 1px;
}

.gln-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.gln-nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    outline: none;
}

.gln-nav-menu a:focus {
    outline: none;
}

.gln-nav-menu a:hover,
.gln-nav-menu .gln-nav-active {
    color: #2563eb;
}

.gln-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.gln-nav-menu a:hover::after,
.gln-nav-menu .gln-nav-active::after {
    width: 100%;
}

.gln-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.gln-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: 0.3s;
}

/* Breadcrumb */
.gln-breadcrumb {
    background: #f8fafc;
    padding: 20px 0;
    margin-top: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.gln-breadcrumb-nav a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gln-breadcrumb-nav a:hover {
    color: #1d4ed8;
}

.gln-breadcrumb-separator {
    color: #64748b;
}

.gln-breadcrumb-current {
    color: #1a1a1a;
    font-weight: 600;
}

/* Hero Section */
.gln-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gln-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gln-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.gln-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gln-hero-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.gln-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gln-hero-accent {
    color: #2563eb;
}

.gln-hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.gln-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.gln-btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.gln-btn-primary {
    background: #2563eb;
    color: white;
}

.gln-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.gln-btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.gln-btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.gln-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.gln-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gln-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gln-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Personal Credit Services */
.gln-personal-credit {
    padding: 80px 0;
    background: #ffffff;
}

.gln-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gln-service-card {
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gln-service-icon {
    margin-bottom: 24px;
}

.gln-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-service-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gln-service-features {
    list-style: none;
    margin-bottom: 24px;
}

.gln-service-features li {
    color: #64748b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.gln-service-features li::before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.gln-service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.gln-service-link:hover {
    color: #1d4ed8;
}

/* Business Financing */
.gln-business-financing {
    padding: 80px 0;
    background: #f8fafc;
}

.gln-business-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.gln-business-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gln-business-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.gln-business-type {
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.gln-business-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gln-business-details {
    margin-bottom: 24px;
}

.gln-business-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.gln-detail-label {
    color: #64748b;
    font-weight: 600;
}

.gln-detail-value {
    color: #1a1a1a;
    font-weight: 600;
}

.gln-business-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.gln-business-link:hover {
    color: #1d4ed8;
}

.gln-business-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-business-features h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-business-features ul {
    list-style: none;
}

.gln-business-features li {
    color: #64748b;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.gln-business-features li::before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Investment Services */
.gln-investment-services {
    padding: 80px 0;
    background: #ffffff;
}

.gln-investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gln-investment-card {
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-investment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gln-investment-icon {
    margin-bottom: 24px;
}

.gln-investment-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-investment-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gln-investment-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.gln-investment-stat {
    text-align: center;
}

.gln-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.gln-stat-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

/* Risk Assessment */
.gln-risk-assessment {
    padding: 80px 0;
    background: #f8fafc;
}

.gln-risk-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.gln-risk-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-risk-icon {
    margin-bottom: 24px;
}

.gln-risk-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-risk-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gln-risk-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gln-risk-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 14px;
}

.gln-risk-feature svg {
    color: #2563eb;
}

.gln-risk-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-risk-metrics h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.gln-metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-metric-label {
    color: #64748b;
    font-size: 14px;
}

.gln-metric-value {
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
}

/* Custom Solutions */
.gln-custom-solutions {
    padding: 80px 0;
    background: #ffffff;
}

.gln-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gln-solution-card {
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gln-solution-icon {
    margin-bottom: 24px;
}

.gln-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-solution-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gln-solution-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.gln-solution-feature {
    background: #e0e7ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.gln-solution-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.gln-solution-link:hover {
    color: #1d4ed8;
}

/* Footer */
.gln-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.gln-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gln-footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.gln-footer .gln-company-name {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.gln-footer-section ul {
    list-style: none;
}

.gln-footer-section ul li {
    margin-bottom: 12px;
}

.gln-footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.gln-footer-section a:hover {
    color: #2563eb;
}

.gln-footer-section p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.gln-social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.gln-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.gln-social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.gln-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.gln-footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gln-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gln-business-content,
    .gln-risk-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gln-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gln-nav-menu {
        display: none;
    }

    .gln-nav-toggle {
        display: flex;
    }

    .gln-hero-title {
        font-size: 2.5rem;
    }

    .gln-section-title {
        font-size: 2rem;
    }

    .gln-footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gln-container {
        padding: 0 16px;
    }

    .gln-hero-title {
        font-size: 2rem;
    }

    .gln-section-title {
        font-size: 1.5rem;
    }

    .gln-service-card,
    .gln-business-card,
    .gln-business-sidebar,
    .gln-investment-card,
    .gln-risk-card,
    .gln-risk-sidebar,
    .gln-solution-card {
        padding: 24px 20px;
    }
}