/* ============================================
   skin-future/assets/css/main.css
============================================ */
:root {
    --future-bg: #0a0e1a;
    --future-bg-card: #0d1428;
    --future-bg-card-hover: #141d3a;
    --future-text: #e8edf5;
    --future-text-secondary: #8892b0;
    --future-text-muted: #4a5578;
    --future-primary: #00f0ff;
    --future-primary-dark: #00b8d4;
    --future-primary-glow: rgba(0, 240, 255, 0.15);
    --future-accent: #7c3aed;
    --future-accent-glow: rgba(124, 58, 237, 0.15);
    --future-gradient: linear-gradient(135deg, #00f0ff 0%, #7c3aed 50%, #00f0ff 100%);
    --future-border: rgba(0, 240, 255, 0.08);
    --future-border-active: rgba(0, 240, 255, 0.25);
    --future-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    --future-shadow-glow: 0 8px 50px rgba(0, 240, 255, 0.08);
    --future-radius: 12px;
    --future-radius-lg: 20px;
    --future-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--future-bg);
    color: var(--future-text-secondary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* 网格背景 */
.future-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.future-grid-line {
    position: absolute;
    background: rgba(0, 240, 255, 0.03);
}

.future-grid-line:nth-child(1) { top: 20%; left: 0; right: 0; height: 1px; }
.future-grid-line:nth-child(2) { top: 40%; left: 0; right: 0; height: 1px; }
.future-grid-line:nth-child(3) { top: 60%; left: 0; right: 0; height: 1px; }
.future-grid-line:nth-child(4) { top: 80%; left: 0; right: 0; height: 1px; }
.future-grid-line:nth-child(5) { left: 20%; top: 0; bottom: 0; width: 1px; }
.future-grid-line:nth-child(6) { left: 40%; top: 0; bottom: 0; width: 1px; }
.future-grid-line:nth-child(7) { left: 60%; top: 0; bottom: 0; width: 1px; }
.future-grid-line:nth-child(8) { left: 80%; top: 0; bottom: 0; width: 1px; }

/* 扫描线 */
.future-scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--future-primary), transparent);
    opacity: 0.1;
    z-index: 9999;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { top: 0; opacity: 0.1; }
    50% { opacity: 0.2; }
    100% { top: 100%; opacity: 0.1; }
}

.future-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.future-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--future-border);
}

.future-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.future-header-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--future-primary), transparent);
    opacity: 0.3;
}

.future-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.future-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.future-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--future-text);
    letter-spacing: 1px;
}

.future-logo-dot {
    color: var(--future-primary);
    font-size: 10px;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.future-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.future-nav-link {
    color: var(--future-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--future-transition);
    position: relative;
    padding: 4px 0;
}

.future-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--future-primary);
    transition: var(--future-transition);
    box-shadow: 0 0 20px var(--future-primary-glow);
}

.future-nav-link:hover {
    color: var(--future-text);
}

.future-nav-link:hover::after {
    width: 100%;
}

.future-nav-cta {
    padding: 8px 24px;
    background: var(--future-primary);
    color: var(--future-bg) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: var(--future-transition);
    position: relative;
    overflow: hidden;
}

.future-nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--future-primary-glow);
}

.future-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.future-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--future-text);
    transition: var(--future-transition);
}

/* ===== BUTTONS ===== */
.future-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--future-transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.future-btn.primary {
    background: var(--future-gradient);
    background-size: 200% 200%;
    color: var(--future-bg);
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.future-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(0, 240, 255, 0.3);
}

.future-btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: glow-spin 6s linear infinite;
}

@keyframes glow-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.future-btn.secondary {
    background: transparent;
    color: var(--future-text);
    border: 1px solid var(--future-border-active);
}

.future-btn.secondary:hover {
    border-color: var(--future-primary);
    background: var(--future-primary-glow);
    transform: translateY(-3px);
}

/* ===== SECTION HEADER ===== */
.future-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.future-section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: var(--future-primary-glow);
    color: var(--future-primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--future-text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.future-highlight {
    background: var(--future-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease-in-out infinite;
}

.future-section-header p {
    font-size: 16px;
    color: var(--future-text-secondary);
}

.future-section-action {
    text-align: center;
    margin-top: 40px;
}

/* ===== HERO ===== */
.future-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: var(--future-bg);
}

.future-hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 240, 255, 0.04) 0%, transparent 50%);
}

.future-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: orb-float 8s ease-in-out infinite;
    z-index: 0;
}

.future-hero-orb {
    width: 500px;
    height: 500px;
    background: var(--future-primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.future-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--future-accent);
    bottom: -150px;
    left: -100px;
    animation-delay: 3s;
    opacity: 0.15;
}

.future-hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--future-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
    opacity: 0.08;
    filter: blur(120px);
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.future-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.future-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 20px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--future-primary);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.future-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--future-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.future-hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    color: var(--future-text);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-shadow: 0 0 60px rgba(0, 240, 255, 0.05);
}

.future-hero-brand {
    display: block;
    font-size: clamp(32px, 6vw, 56px);
}

.future-hero-highlight {
    display: block;
    font-size: clamp(36px, 7vw, 64px);
    background: var(--future-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease-in-out infinite;
}

.future-hero-desc {
    font-size: clamp(16px, 1.3vw, 20px);
    color: var(--future-text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.future-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.future-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--future-border);
}

.future-stat {
    text-align: center;
}

.future-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--future-text);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}

.future-stat-number[data-count]::after {
    content: '+';
    color: var(--future-primary);
}

.future-stat-label {
    font-size: 14px;
    color: var(--future-text-muted);
}

.future-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--future-border);
}

.future-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--future-text-muted);
    font-size: 11px;
    letter-spacing: 3px;
    opacity: 0.4;
    z-index: 2;
}

.future-scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, var(--future-primary), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; }
}

/* ===== FEATURES ===== */
.future-features {
    padding: 80px 0;
    background: var(--future-bg-card);
    position: relative;
}

.future-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.future-feature {
    padding: 32px 24px 28px;
    background: var(--future-bg);
    border-radius: var(--future-radius);
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
    position: relative;
    overflow: hidden;
}

.future-feature:hover {
    transform: translateY(-6px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--future-primary);
}

.future-feature-icon svg {
    width: 100%;
    height: 100%;
}

.future-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 8px;
}

.future-feature p {
    font-size: 14px;
    color: var(--future-text-secondary);
    line-height: 1.7;
}

.future-feature-line {
    width: 30px;
    height: 2px;
    background: var(--future-primary);
    margin-top: 16px;
    opacity: 0.3;
    transition: var(--future-transition);
}

.future-feature:hover .future-feature-line {
    width: 50px;
    opacity: 1;
}

.future-feature-active {
    border-color: var(--future-border-active);
    background: rgba(0, 240, 255, 0.04);
}

/* ===== SERVICES ===== */
.future-services {
    padding: 80px 0;
    background: var(--future-bg);
}

.future-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.future-service {
    background: var(--future-bg-card);
    border-radius: var(--future-radius);
    overflow: hidden;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-service:hover {
    transform: translateY(-6px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-service a {
    display: block;
    text-decoration: none;
}

.future-service-visual {
    position: relative;
    overflow: hidden;
}

.future-service-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.future-service:hover img {
    transform: scale(1.05);
}

.future-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 14, 26, 0.8));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
}

.future-service-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--future-primary);
    background: rgba(10, 14, 26, 0.8);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--future-border-active);
}

.future-service-info {
    padding: 20px 24px 24px;
}

.future-service-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 6px;
}

.future-service-info p {
    font-size: 14px;
    color: var(--future-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.future-service-link {
    font-size: 14px;
    color: var(--future-primary);
    font-weight: 500;
    transition: var(--future-transition);
}

.future-service-link:hover {
    color: var(--future-text);
}

/* ===== PROJECTS ===== */
.future-projects {
    padding: 80px 0;
    background: var(--future-bg-card);
}

.future-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.future-project {
    border-radius: var(--future-radius);
    overflow: hidden;
    position: relative;
    background: var(--future-bg);
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-project:hover {
    transform: translateY(-6px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-project a {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.future-project img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.future-project:hover img {
    transform: scale(1.05);
}

.future-project-info {
    padding: 16px 20px 20px;
    position: relative;
    z-index: 1;
}

.future-project-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--future-primary);
    background: var(--future-primary-glow);
    padding: 2px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-project-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 6px;
}

.future-project-link {
    font-size: 13px;
    color: var(--future-primary);
    font-weight: 500;
    transition: var(--future-transition);
}

.future-project-link:hover {
    color: var(--future-text);
}

.future-project-glow {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: var(--future-transition);
}

.future-project:hover .future-project-glow {
    opacity: 1;
}

/* ===== NEWS ===== */
.future-news {
    padding: 80px 0;
    background: var(--future-bg);
}

.future-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.future-news-item {
    background: var(--future-bg-card);
    border-radius: var(--future-radius);
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-news-item:hover {
    transform: translateY(-6px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-news-item a {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    text-decoration: none;
}

.future-news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 8px;
    background: var(--future-primary-glow);
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-news-day {
    font-size: 24px;
    font-weight: 700;
    color: var(--future-primary);
    line-height: 1;
}

.future-news-month {
    font-size: 11px;
    color: var(--future-text-muted);
    text-transform: uppercase;
}

.future-news-content {
    flex: 1;
}

.future-news-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 4px;
}

.future-news-content p {
    font-size: 14px;
    color: var(--future-text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.future-news-link {
    font-size: 13px;
    color: var(--future-primary);
    font-weight: 500;
    transition: var(--future-transition);
}

.future-news-link:hover {
    color: var(--future-text);
}

/* ===== CONTACT ===== */
.future-contact {
    padding: 80px 0;
    background: var(--future-bg-card);
}

.future-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--future-bg);
    border-radius: var(--future-radius-lg);
    padding: 50px 60px;
    border: 1px solid var(--future-border);
    position: relative;
    overflow: hidden;
}

.future-contact-content {
    position: relative;
    z-index: 1;
}

.future-contact-content .future-section-tag {
    margin-bottom: 12px;
}

.future-contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--future-text);
    margin-bottom: 12px;
}

.future-contact-content p {
    font-size: 16px;
    color: var(--future-text-secondary);
    margin-bottom: 30px;
}

.future-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.future-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.future-contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--future-primary-glow);
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-contact-item label {
    display: block;
    font-size: 12px;
    color: var(--future-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.future-contact-item strong {
    font-size: 15px;
    color: var(--future-text);
}

.future-contact-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-contact-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--future-primary);
    filter: blur(60px);
    opacity: 0.15;
    animation: orb-float 6s ease-in-out infinite;
}

.future-contact-orb-2 {
    width: 150px;
    height: 150px;
    background: var(--future-accent);
    animation-delay: 3s;
}

.future-contact-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--future-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--future-border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    border-radius: var(--future-radius);
}

/* ===== FOOTER ===== */
.future-footer {
    background: var(--future-bg);
    border-top: 1px solid var(--future-border);
    padding: 50px 0 20px;
    position: relative;
}

.future-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.future-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.future-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.future-footer-logo .future-logo-text {
    font-size: 18px;
}

.future-logo-tag {
    font-size: 10px;
    color: var(--future-primary);
    background: var(--future-primary-glow);
    padding: 2px 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-footer-col p {
    font-size: 14px;
    color: var(--future-text-secondary);
    line-height: 1.8;
}

.future-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.future-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--future-border);
    border-radius: 8px;
    color: var(--future-text-secondary);
    text-decoration: none;
    transition: var(--future-transition);
    font-size: 16px;
}

.future-social-link:hover {
    border-color: var(--future-primary);
    color: var(--future-primary);
    background: var(--future-primary-glow);
}

.future-footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 16px;
}

.future-footer-col ul {
    list-style: none;
    padding: 0;
}

.future-footer-col ul li {
    margin-bottom: 10px;
}

.future-footer-col ul li a {
    color: var(--future-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--future-transition);
}

.future-footer-col ul li a:hover {
    color: var(--future-primary);
}

.future-footer-phone {
    color: var(--future-primary) !important;
    font-weight: 600;
}

.future-footer-subscribe {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.future-footer-subscribe input {
    flex: 1;
    padding: 8px 14px;
    background: var(--future-bg-card);
    border: 1px solid var(--future-border);
    border-radius: 6px;
    color: var(--future-text);
    font-size: 13px;
}

.future-footer-subscribe input::placeholder {
    color: var(--future-text-muted);
}

.future-footer-subscribe button {
    padding: 8px 16px;
    background: var(--future-primary);
    color: var(--future-bg);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--future-transition);
}

.future-footer-subscribe button:hover {
    background: var(--future-text);
}

.future-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--future-border);
    text-align: center;
}

.future-footer-line {
    width: 60px;
    height: 2px;
    background: var(--future-primary);
    margin: 0 auto 16px;
    opacity: 0.3;
}

.future-footer-bottom p {
    font-size: 13px;
    color: var(--future-text-muted);
}

.future-divider {
    margin: 0 12px;
    opacity: 0.3;
}

/* ===== PAGE ===== */
.future-page {
    padding: 100px 0 80px;
    background: var(--future-bg);
}

.future-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.future-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--future-text);
    margin-bottom: 8px;
}

.future-page-header p {
    font-size: 16px;
    color: var(--future-text-secondary);
}

.future-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.future-about-text {
    background: var(--future-bg-card);
    padding: 40px 48px;
    border-radius: var(--future-radius-lg);
    border: 1px solid var(--future-border);
}

.future-about-text p {
    font-size: 16px;
    color: var(--future-text-secondary);
    line-height: 2;
    margin-bottom: 16px;
}

.future-about-text h2 {
    font-size: 28px;
    color: var(--future-text);
    margin: 24px 0 12px;
}

.future-about-text h3 {
    font-size: 22px;
    color: var(--future-text);
    margin: 20px 0 10px;
}

.future-about-text ul,
.future-about-text ol {
    padding-left: 24px;
    margin: 12px 0 16px;
    color: var(--future-text-secondary);
}

.future-about-text li {
    margin-bottom: 6px;
}

.future-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.future-about-stat {
    background: var(--future-bg-card);
    padding: 24px;
    border-radius: var(--future-radius);
    text-align: center;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-about-stat:hover {
    border-color: var(--future-border-active);
    transform: translateY(-4px);
    box-shadow: var(--future-shadow-glow);
}

.future-about-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--future-primary);
}

.future-about-stat label {
    display: block;
    font-size: 13px;
    color: var(--future-text-muted);
    margin-top: 4px;
}

/* ===== SERVICE LIST ===== */
.future-service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.future-service-detail {
    display: grid;
    grid-template-columns: auto 1fr 1.5fr;
    gap: 30px;
    align-items: center;
    background: var(--future-bg-card);
    border-radius: var(--future-radius-lg);
    padding: 30px;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
    position: relative;
}

.future-service-detail:hover {
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
    transform: translateX(6px);
}

.future-service-detail-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--future-primary);
    opacity: 0.15;
    font-variant-numeric: tabular-nums;
    min-width: 60px;
}

.future-service-detail-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--future-radius);
}

.future-service-detail-content h2 {
    font-size: 24px;
    color: var(--future-text);
    margin-bottom: 8px;
}

.future-service-detail-content p {
    font-size: 15px;
    color: var(--future-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.future-advantage {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--future-primary-glow);
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--future-primary);
    font-size: 13px;
    margin-bottom: 16px;
}

.future-advantage-icon {
    font-size: 12px;
}

/* ===== PROJECT GRID ===== */
.future-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.future-project-card {
    background: var(--future-bg-card);
    border-radius: var(--future-radius);
    overflow: hidden;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-project-card:hover {
    transform: translateY(-6px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-project-card a {
    display: block;
    text-decoration: none;
}

.future-project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.future-project-card-info {
    padding: 18px 20px 20px;
}

.future-project-card-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--future-primary);
    background: var(--future-primary-glow);
    padding: 2px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-project-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 6px;
}

.future-project-card-link {
    font-size: 14px;
    color: var(--future-primary);
    font-weight: 500;
    transition: var(--future-transition);
}

.future-project-card-link:hover {
    color: var(--future-text);
}

/* ===== NEWS LIST ===== */
.future-news-list {
    max-width: 900px;
    margin: 0 auto;
}

.future-news-item {
    background: var(--future-bg-card);
    border-radius: var(--future-radius);
    border: 1px solid var(--future-border);
    margin-bottom: 16px;
    transition: var(--future-transition);
}

.future-news-item:hover {
    border-color: var(--future-border-active);
    transform: translateX(6px);
    box-shadow: var(--future-shadow-glow);
}

.future-news-item a {
    display: flex;
    gap: 24px;
    padding: 20px 28px;
    text-decoration: none;
    align-items: flex-start;
}

.future-news-item-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 8px 12px;
    background: var(--future-primary-glow);
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.future-news-item-date span:first-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--future-primary);
    line-height: 1;
}

.future-news-item-date span:last-child {
    font-size: 11px;
    color: var(--future-text-muted);
    text-transform: uppercase;
}

.future-news-item-content {
    flex: 1;
}

.future-news-item-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 4px;
}

.future-news-item-content p {
    font-size: 14px;
    color: var(--future-text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.future-news-item-link {
    font-size: 14px;
    color: var(--future-primary);
    font-weight: 500;
    transition: var(--future-transition);
}

.future-news-item-link:hover {
    color: var(--future-text);
}

/* ===== CERT GRID ===== */
.future-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.future-cert-item {
    background: var(--future-bg-card);
    border-radius: var(--future-radius);
    overflow: hidden;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
    text-align: center;
}

.future-cert-item:hover {
    transform: translateY(-6px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-cert-item a {
    display: block;
    text-decoration: none;
    padding-bottom: 16px;
}

.future-cert-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.future-cert-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--future-text);
    padding: 12px 16px 4px;
}

.future-cert-link {
    font-size: 13px;
    color: var(--future-primary);
    font-weight: 500;
    transition: var(--future-transition);
}

.future-cert-link:hover {
    color: var(--future-text);
}

/* ===== CONTACT GRID ===== */
.future-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.future-contact-card {
    background: var(--future-bg-card);
    padding: 30px 24px;
    border-radius: var(--future-radius);
    text-align: center;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--future-border-active);
    box-shadow: var(--future-shadow-glow);
}

.future-contact-card-active {
    border-color: var(--future-border-active);
    background: rgba(0, 240, 255, 0.04);
}

.future-contact-card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.future-contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--future-text);
}

.future-contact-card p {
    font-size: 14px;
    color: var(--future-text-secondary);
    margin-top: 4px;
}

.future-contact-map {
    background: var(--future-bg-card);
    border-radius: var(--future-radius-lg);
    padding: 40px;
    border: 1px solid var(--future-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.future-contact-map-inner {
    position: relative;
    z-index: 1;
}

.future-contact-map-pin {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.future-contact-map p {
    font-size: 16px;
    color: var(--future-text-secondary);
}

.future-contact-map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== SINGLE ===== */
.future-single {
    padding: 100px 0 80px;
    background: var(--future-bg);
}

.future-single-header {
    text-align: center;
    margin-bottom: 40px;
}

.future-single-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--future-text);
    margin: 12px 0 4px;
}

.future-single-date {
    font-size: 14px;
    color: var(--future-text-muted);
}

.future-single-image {
    border-radius: var(--future-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.future-single-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.future-single-image-center {
    max-width: 600px;
    margin: 0 auto 40px;
}

.future-single-image-center img {
    height: auto;
    max-height: 500px;
}

.future-single-image-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--future-bg), transparent);
    pointer-events: none;
    opacity: 0.5;
}

.future-single-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.future-single-meta div {
    background: var(--future-bg-card);
    padding: 16px 24px;
    border-radius: var(--future-radius);
    border: 1px solid var(--future-border);
}

.future-single-meta span {
    display: block;
    font-size: 11px;
    color: var(--future-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.future-single-meta strong {
    display: block;
    font-size: 16px;
    color: var(--future-text);
    margin-top: 4px;
}

.future-single-content {
    background: var(--future-bg-card);
    padding: 40px 48px;
    border-radius: var(--future-radius-lg);
    border: 1px solid var(--future-border);
}

.future-single-content p {
    font-size: 16px;
    color: var(--future-text-secondary);
    line-height: 2;
    margin-bottom: 16px;
}

.future-single-content h2 {
    font-size: 28px;
    color: var(--future-text);
    margin: 32px 0 16px;
}

.future-single-content h3 {
    font-size: 22px;
    color: var(--future-text);
    margin: 24px 0 12px;
}

.future-single-content ul,
.future-single-content ol {
    padding-left: 24px;
    margin: 12px 0 16px;
    color: var(--future-text-secondary);
}

.future-single-content li {
    margin-bottom: 6px;
    line-height: 1.8;
}

.future-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--future-radius);
    margin: 16px 0;
}

.future-single-content blockquote {
    border-left: 4px solid var(--future-primary);
    padding: 12px 24px;
    margin: 16px 0;
    background: rgba(0, 240, 255, 0.04);
    border-radius: 0 var(--future-radius) var(--future-radius) 0;
    color: var(--future-text-secondary);
}

.future-single-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--future-border);
}

.future-single-nav a {
    font-size: 14px;
    color: var(--future-text-secondary);
    text-decoration: none;
    transition: var(--future-transition);
}

.future-single-nav a:hover {
    color: var(--future-primary);
}

/* ===== PAGINATION ===== */
.future-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.future-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--future-bg-card);
    color: var(--future-text-secondary);
    text-decoration: none;
    border: 1px solid var(--future-border);
    transition: var(--future-transition);
}

.future-pagination .page-numbers.current {
    background: var(--future-primary);
    color: var(--future-bg);
    border-color: var(--future-primary);
}

.future-pagination .page-numbers:hover:not(.current) {
    border-color: var(--future-border-active);
    color: var(--future-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .future-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .future-contact-wrap {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    .future-contact-info {
        align-items: center;
    }
    .future-about-grid {
        grid-template-columns: 1fr;
    }
    .future-about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    .future-service-detail {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    .future-service-detail-number {
        display: none;
    }
    .future-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .future-single-meta {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .future-nav {
        display: none;
    }
    .future-menu-toggle {
        display: flex;
    }
    
    .future-hero-title {
        font-size: 32px;
    }
    .future-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .future-stat-divider {
        display: none;
    }
    
    .future-features-grid {
        grid-template-columns: 1fr;
    }
    .future-services-grid {
        grid-template-columns: 1fr;
    }
    .future-projects-grid {
        grid-template-columns: 1fr;
    }
    .future-news-grid {
        grid-template-columns: 1fr;
    }
    .future-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .future-footer-social {
        justify-content: center;
    }
    .future-footer-subscribe {
        justify-content: center;
    }
    
    .future-contact-wrap {
        padding: 30px 24px;
    }
    .future-contact-content h2 {
        font-size: 28px;
    }
    .future-section-header h2 {
        font-size: 28px;
    }
    .future-hero-scroll {
        display: none;
    }
    
    .future-page-header h1 {
        font-size: 32px;
    }
    .future-about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .future-project-grid {
        grid-template-columns: 1fr;
    }
    .future-cert-grid {
        grid-template-columns: 1fr 1fr;
    }
    .future-contact-grid {
        grid-template-columns: 1fr;
    }
    .future-single-meta {
        grid-template-columns: 1fr;
    }
    .future-single-content {
        padding: 24px;
    }
    .future-single-image img {
        height: 250px;
    }
    .future-news-item a {
        flex-direction: column;
        padding: 16px 20px;
    }
    .future-news-item-date {
        flex-direction: row;
        gap: 8px;
        min-width: auto;
        padding: 4px 16px;
    }
    .future-news-item-date span:first-child {
        font-size: 16px;
    }
    .future-single-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .future-hero-title {
        font-size: 26px;
    }
    .future-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .future-btn {
        width: 100%;
        text-align: center;
    }
    .future-contact-info {
        width: 100%;
    }
    .future-contact-item {
        flex-direction: column;
        text-align: center;
    }
    .future-about-stats {
        grid-template-columns: 1fr;
    }
    .future-cert-grid {
        grid-template-columns: 1fr;
    }
    .future-service-detail-content h2 {
        font-size: 20px;
    }
    .future-single-header h1 {
        font-size: 28px;
    }
}

/* ===== FOOTER ===== */
.future-footer {
    background: var(--future-bg);
    border-top: 1px solid var(--future-border);
    padding: 50px 0 20px;
    position: relative;
}

.future-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.future-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.future-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.future-footer-logo .future-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--future-text);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* 如果公司名太长，用这个版本替代上面的 white-space: nowrap */
.future-footer-logo .future-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--future-text);
    letter-spacing: 1px;
    word-break: break-word;
    max-width: 200px;
}

.future-logo-tag {
    font-size: 10px;
    color: var(--future-primary);
    background: var(--future-primary-glow);
    padding: 2px 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.future-footer-col p {
    font-size: 14px;
    color: var(--future-text-secondary);
    line-height: 1.8;
    word-break: break-word;
}

.future-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.future-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--future-border);
    border-radius: 8px;
    color: var(--future-text-secondary);
    text-decoration: none;
    transition: var(--future-transition);
    font-size: 16px;
}

.future-social-link:hover {
    border-color: var(--future-primary);
    color: var(--future-primary);
    background: var(--future-primary-glow);
}

.future-footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--future-text);
    margin-bottom: 16px;
}

.future-footer-col ul {
    list-style: none;
    padding: 0;
}

.future-footer-col ul li {
    margin-bottom: 10px;
}

.future-footer-col ul li a {
    color: var(--future-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--future-transition);
    word-break: break-word;
}

.future-footer-col ul li a:hover {
    color: var(--future-primary);
}

.future-footer-col ul li {
    color: var(--future-text-secondary);
    font-size: 14px;
    word-break: break-word;
}

.future-footer-phone {
    color: var(--future-primary) !important;
    font-weight: 600;
}

.future-footer-subscribe {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.future-footer-subscribe input {
    flex: 1;
    padding: 8px 14px;
    background: var(--future-bg-card);
    border: 1px solid var(--future-border);
    border-radius: 6px;
    color: var(--future-text);
    font-size: 13px;
    min-width: 0;
}

.future-footer-subscribe input::placeholder {
    color: var(--future-text-muted);
}

.future-footer-subscribe button {
    padding: 8px 16px;
    background: var(--future-primary);
    color: var(--future-bg);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--future-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.future-footer-subscribe button:hover {
    background: var(--future-text);
}

.future-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--future-border);
    text-align: center;
}

.future-footer-line {
    width: 60px;
    height: 2px;
    background: var(--future-primary);
    margin: 0 auto 16px;
    opacity: 0.3;
}

.future-footer-bottom p {
    font-size: 13px;
    color: var(--future-text-muted);
    word-break: break-word;
}

.future-divider {
    margin: 0 12px;
    opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .future-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .future-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .future-footer-logo {
        justify-content: center;
    }
    .future-footer-social {
        justify-content: center;
    }
    .future-footer-subscribe {
        justify-content: center;
    }
    .future-footer-logo .future-logo-text {
        white-space: normal;
        word-break: break-word;
        max-width: 100%;
    }
}
