<br />
<b>Warning</b>:  mkdir(): No space left on device in <b>/www/wwwroot/new9.com/func.php</b> on line <b>127</b><br />
<br />
<b>Warning</b>:  file_put_contents(./cachefile_yuan/hnqqw.com/img/22/9d9aa/ec462.css): failed to open stream: No such file or directory in <b>/www/wwwroot/new9.com/func.php</b> on line <b>115</b><br />
/* ============================================
   Web14 - Glassmorphism SEO Template
   玻璃拟态设计风格 + SEO优化
   ============================================ */


:root {
    --gx14-primary: #ff9f43;
    --gx14-primary-dark: #ee8a2e;
    --gx14-secondary: #ff6b6b;
    --gx14-accent: #feca57;
    --gx14-dark: #2d3436;
    --gx14-darker: #1e272e;
    --gx14-light: #f8f9fa;
    --gx14-muted: #b2bec3;
    --gx14-glass: rgba(255, 255, 255, 0.1);
    --gx14-glass-border: rgba(255, 255, 255, 0.15);
    --gx14-shadow: 0 8px 32px rgba(255, 159, 67, 0.25);
    --gx14-shadow-lg: 0 25px 50px rgba(255, 159, 67, 0.35);
    --gx14-radius: 24px;
    --gx14-radius-sm: 16px;
    --gx14-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--gx14-light);
    background: var(--gx14-darker);
    overflow-x: hidden;
    min-height: 100vh;
}


.gx14-bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 159, 67, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 159, 67, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: gx14-grid-move 20s linear infinite;
}

@keyframes gx14-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.gx14-bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    animation: gx14-glow-pulse 8s ease-in-out infinite;
}

.gx14-bg-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--gx14-primary);
    animation-delay: 0s;
}

.gx14-bg-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--gx14-secondary);
    animation-delay: 4s;
}

@keyframes gx14-glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.3; }
}


.gx14-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 1000;
    background: var(--gx14-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    padding: 16px 32px;
    box-shadow: var(--gx14-shadow);
}

.gx14-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.gx14-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gx14-brand-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    border-radius: var(--gx14-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.gx14-brand-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gx14-light), var(--gx14-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gx14-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gx14-nav-link {
    padding: 10px 20px;
    color: var(--gx14-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--gx14-radius-sm);
    transition: var(--gx14-transition);
    position: relative;
    overflow: hidden;
}

.gx14-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    opacity: 0;
    transition: var(--gx14-transition);
    z-index: -1;
}

.gx14-nav-link:hover,
.gx14-nav-link.gx14-active {
    color: white;
}

.gx14-nav-link:hover::before,
.gx14-nav-link.gx14-active::before {
    opacity: 1;
}

.gx14-nav-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--gx14-radius-sm);
    transition: var(--gx14-transition);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.gx14-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.gx14-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius-sm);
    color: var(--gx14-light);
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}


.gx14-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    overflow: hidden;
}

.gx14-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.gx14-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--gx14-accent);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.gx14-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gx14-accent);
    border-radius: 50%;
    animation: gx14-pulse 2s infinite;
}

@keyframes gx14-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.gx14-hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--gx14-light) 0%, var(--gx14-primary) 50%, var(--gx14-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gx14-hero-desc {
    font-size: 18px;
    color: var(--gx14-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.gx14-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gx14-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--gx14-radius-sm);
    transition: var(--gx14-transition);
    cursor: pointer;
    border: none;
}

.gx14-btn-primary {
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.gx14-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.gx14-btn-outline {
    background: var(--gx14-glass);
    color: var(--gx14-light);
    border: 1px solid var(--gx14-glass-border);
    backdrop-filter: blur(10px);
}

.gx14-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gx14-primary);
}


.gx14-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
    perspective: 1000px;
}

.gx14-hero-card {
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    padding: 32px;
    text-align: left;
    backdrop-filter: blur(20px);
    transition: var(--gx14-transition);
    transform-style: preserve-3d;
}

.gx14-hero-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--gx14-shadow-lg);
    border-color: var(--gx14-primary);
}

.gx14-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    border-radius: var(--gx14-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.gx14-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gx14-light);
}

.gx14-card-text {
    font-size: 14px;
    color: var(--gx14-muted);
    line-height: 1.7;
}


.gx14-section {
    position: relative;
    padding: 120px 40px;
    z-index: 1;
}

.gx14-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gx14-section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gx14-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gx14-section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gx14-light), var(--gx14-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gx14-section-desc {
    font-size: 17px;
    color: var(--gx14-muted);
    line-height: 1.8;
}


.gx14-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gx14-service-item {
    position: relative;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    padding: 40px;
    overflow: hidden;
    transition: var(--gx14-transition);
}

.gx14-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gx14-primary), var(--gx14-secondary));
    transform: scaleX(0);
    transition: var(--gx14-transition);
}

.gx14-service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--gx14-shadow);
    border-color: var(--gx14-primary);
}

.gx14-service-item:hover::before {
    transform: scaleX(1);
}

.gx14-service-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.2);
    margin-bottom: 20px;
    line-height: 1;
}

.gx14-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gx14-light);
}

.gx14-service-desc {
    font-size: 15px;
    color: var(--gx14-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.gx14-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gx14-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--gx14-transition);
}

.gx14-service-link:hover {
    gap: 12px;
    color: var(--gx14-accent);
}


.gx14-cases-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.gx14-case-item {
    position: relative;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    overflow: hidden;
    transition: var(--gx14-transition);
}

.gx14-case-item:hover {
    transform: scale(1.02);
    box-shadow: var(--gx14-shadow-lg);
}

.gx14-case-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.gx14-case-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--gx14-darker) 100%);
}

.gx14-case-content {
    padding: 32px;
}

.gx14-case-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gx14-primary);
    margin-bottom: 16px;
}

.gx14-case-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gx14-light);
}

.gx14-case-desc {
    font-size: 15px;
    color: var(--gx14-muted);
    line-height: 1.7;
}


.gx14-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gx14-news-item {
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    overflow: hidden;
    transition: var(--gx14-transition);
}

.gx14-news-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--gx14-shadow);
}

.gx14-news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.gx14-news-content {
    padding: 28px;
}

.gx14-news-date {
    font-size: 13px;
    color: var(--gx14-muted);
    margin-bottom: 12px;
}

.gx14-news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gx14-light);
    line-height: 1.5;
}

.gx14-news-excerpt {
    font-size: 14px;
    color: var(--gx14-muted);
    line-height: 1.7;
}


.gx14-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gx14-stat-item {
    text-align: center;
    padding: 40px;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    backdrop-filter: blur(10px);
}

.gx14-stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.gx14-stat-label {
    font-size: 14px;
    color: var(--gx14-muted);
}


.gx14-cta {
    position: relative;
    padding: 100px 40px;
    text-align: center;
    overflow: hidden;
}

.gx14-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    opacity: 0.1;
}

.gx14-cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.gx14-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gx14-light);
}

.gx14-cta-desc {
    font-size: 18px;
    color: var(--gx14-muted);
    margin-bottom: 40px;
}


.gx14-footer {
    position: relative;
    background: var(--gx14-dark);
    border-top: 1px solid var(--gx14-glass-border);
    padding: 80px 40px 40px;
}

.gx14-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.gx14-footer-brand {
    max-width: 300px;
}

.gx14-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.gx14-footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    border-radius: var(--gx14-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.gx14-footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--gx14-light);
}

.gx14-footer-desc {
    font-size: 14px;
    color: var(--gx14-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.gx14-footer-social {
    display: flex;
    gap: 12px;
}

.gx14-social-link {
    width: 44px;
    height: 44px;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gx14-muted);
    text-decoration: none;
    font-size: 18px;
    transition: var(--gx14-transition);
}

.gx14-social-link:hover {
    background: var(--gx14-primary);
    border-color: var(--gx14-primary);
    color: white;
    transform: translateY(-3px);
}

.gx14-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gx14-light);
    margin-bottom: 24px;
}

.gx14-footer-links {
    list-style: none;
}

.gx14-footer-links li {
    margin-bottom: 12px;
}

.gx14-footer-link {
    color: var(--gx14-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--gx14-transition);
}

.gx14-footer-link:hover {
    color: var(--gx14-primary);
    padding-left: 8px;
}

.gx14-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--gx14-glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gx14-footer-copyright {
    font-size: 14px;
    color: var(--gx14-muted);
}

.gx14-footer-legal {
    display: flex;
    gap: 24px;
}

.gx14-footer-legal a {
    color: var(--gx14-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--gx14-transition);
}

.gx14-footer-legal a:hover {
    color: var(--gx14-primary);
}


@media (max-width: 1200px) {
    .gx14-hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gx14-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gx14-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gx14-nav-menu {
        display: none;
    }
    
    .gx14-nav-toggle {
        display: flex;
    }
    
    .gx14-hero-cards {
        grid-template-columns: 1fr;
    }
    
    .gx14-cases-container {
        grid-template-columns: 1fr;
    }
    
    .gx14-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gx14-nav {
        padding: 12px 20px;
    }
    
    .gx14-section {
        padding: 80px 20px;
    }
    
    .gx14-hero {
        padding: 120px 20px 60px;
    }
    
    .gx14-news-grid {
        grid-template-columns: 1fr;
    }
    
    .gx14-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gx14-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gx14-stats {
        grid-template-columns: 1fr;
    }
}


.gx14-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gx14-fade-up.gx14-visible {
    opacity: 1;
    transform: translateY(0);
}


.gx14-page-hero {
    position: relative;
    padding: 160px 40px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid var(--gx14-glass-border);
}

.gx14-page-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gx14-light), var(--gx14-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gx14-page-hero-desc {
    font-size: 18px;
    color: var(--gx14-muted);
    max-width: 600px;
    margin: 0 auto;
}


.gx14-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gx14-muted);
}

.gx14-breadcrumb a {
    color: var(--gx14-muted);
    text-decoration: none;
    transition: var(--gx14-transition);
}

.gx14-breadcrumb a:hover {
    color: var(--gx14-primary);
}

.gx14-breadcrumb-separator {
    color: var(--gx14-muted);
    opacity: 0.5;
}


.gx14-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.gx14-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px;
    color: var(--gx14-light);
}

.gx14-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--gx14-light);
}

.gx14-content p {
    font-size: 16px;
    color: var(--gx14-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.gx14-content ul,
.gx14-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.gx14-content li {
    font-size: 16px;
    color: var(--gx14-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}


.gx14-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.gx14-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gx14-primary), var(--gx14-secondary));
}

.gx14-timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.gx14-timeline-item:nth-child(odd) .gx14-timeline-content {
    margin-left: auto;
    padding-left: 60px;
}

.gx14-timeline-item:nth-child(even) .gx14-timeline-content {
    padding-right: 60px;
}

.gx14-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gx14-primary);
    border-radius: 50%;
    border: 4px solid var(--gx14-darker);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.gx14-timeline-content {
    width: 45%;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    padding: 28px;
}

.gx14-timeline-date {
    font-size: 14px;
    color: var(--gx14-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.gx14-timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gx14-light);
    margin-bottom: 12px;
}

.gx14-timeline-desc {
    font-size: 14px;
    color: var(--gx14-muted);
    line-height: 1.7;
}


.gx14-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.gx14-team-item {
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    overflow: hidden;
    text-align: center;
    transition: var(--gx14-transition);
}

.gx14-team-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--gx14-shadow);
}

.gx14-team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    border-radius: 50%;
    margin: 40px auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.gx14-team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gx14-light);
    margin-bottom: 8px;
}

.gx14-team-role {
    font-size: 14px;
    color: var(--gx14-primary);
    margin-bottom: 16px;
}

.gx14-team-desc {
    font-size: 14px;
    color: var(--gx14-muted);
    padding: 0 32px 40px;
    line-height: 1.7;
}


.gx14-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.gx14-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gx14-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
}

.gx14-contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    border-radius: var(--gx14-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.gx14-contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gx14-light);
    margin-bottom: 8px;
}

.gx14-contact-details p {
    font-size: 14px;
    color: var(--gx14-muted);
    line-height: 1.7;
}

.gx14-form {
    background: var(--gx14-glass);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius);
    padding: 40px;
}

.gx14-form-group {
    margin-bottom: 24px;
}

.gx14-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gx14-light);
    margin-bottom: 10px;
}

.gx14-form-input,
.gx14-form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gx14-glass-border);
    border-radius: var(--gx14-radius-sm);
    color: var(--gx14-light);
    font-size: 15px;
    transition: var(--gx14-transition);
}

.gx14-form-input:focus,
.gx14-form-textarea:focus {
    outline: none;
    border-color: var(--gx14-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.gx14-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.gx14-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gx14-primary), var(--gx14-secondary));
    border: none;
    border-radius: var(--gx14-radius-sm);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gx14-transition);
}

.gx14-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}


.gx14-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--gx14-dark);
    z-index: 1001;
    padding: 100px 40px 40px;
    transition: var(--gx14-transition);
    overflow-y: auto;
}

.gx14-mobile-menu.gx14-active {
    right: 0;
}

.gx14-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--gx14-transition);
}

.gx14-mobile-menu-overlay.gx14-active {
    opacity: 1;
    pointer-events: auto;
}

.gx14-mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: var(--gx14-light);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--gx14-glass-border);
    transition: var(--gx14-transition);
}

.gx14-mobile-nav-link:hover {
    color: var(--gx14-primary);
    padding-left: 16px;
}


body { 
    background: var(--gx14-darker);
    color: var(--gx14-light);
}
.gx14-hero { padding: 8rem 2rem 6rem; }
.gx14-service-item, .gx14-case-item, .gx14-news-item { 
    border-radius: 20px; 
    backdrop-filter: blur(20px);
}
