/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2540;
    --primary-dark: #071e33;
    --primary-light: #1e4d7c;
    --secondary-color: #00d4ff;
    --accent-color: #7c3aed;
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --text-primary: #1a202c;
    --text-secondary: #2d3748;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1e4d7c 50%, #00d4ff 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-tech: linear-gradient(135deg, #0a2540 0%, #7c3aed 30%, #00d4ff 70%, #06b6d4 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.08) 0px, transparent 50%),
                    radial-gradient(at 80% 0%, rgba(0, 212, 255, 0.05) 0px, transparent 50%),
                    radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.05) 0px, transparent 50%),
                    radial-gradient(at 80% 50%, rgba(124, 58, 237, 0.05) 0px, transparent 50%),
                    radial-gradient(at 0% 100%, rgba(0, 212, 255, 0.08) 0px, transparent 50%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img {
    height: 56px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    display: block;
}

.logo:hover {
    transform: scale(1.03);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(0, 212, 255, 0.05);
}

.nav-menu a.active {
    color: var(--secondary-color);
    background: rgba(0, 212, 255, 0.08);
}

.nav-menu a.active::before {
    width: 80%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn a {
    color: inherit;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-tech);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.btn-primary:hover::after {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2), 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.project-apply-btn {
    margin-left: 24px;
    background: var(--gradient-tech);
    color: #fff;
    padding: 12px 32px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.project-apply-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.project-apply-btn:hover::after {
    opacity: 1;
    animation: shine 1.5s infinite;
}

.project-apply-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 72px;
    background: var(--gradient-tech);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: heroGlow 20s linear infinite;
}

@keyframes heroGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-actions .btn {
    min-width: 200px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 60px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Quick Access */
.quick-access {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.quick-access-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-tech);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-access-card:hover::before {
    transform: scaleX(1);
}

.quick-access-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(0, 212, 255, 0.2);
}

.quick-access-card .icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-access-card .icon svg {
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-access-card:hover .icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.quick-access-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.quick-access-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Section */
.section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-gray {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Business Preview */
.business-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.business-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.business-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-tech);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-card:hover::after {
    transform: scaleX(1);
}

.business-card:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-8px);
}

.business-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-icon svg {
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-card:hover .business-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.business-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.business-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-link::after {
    content: '→';
    transition: transform 0.3s;
}

.btn-link:hover {
    color: var(--primary-light);
    transform: translateX(2px);
}

.btn-link:hover::after {
    transform: translateX(4px);
}

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

.news-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-8px);
}

.news-image {
    height: 200px;
    background: var(--gradient-tech);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-image svg {
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image svg {
    transform: scale(1.1);
    opacity: 0.8;
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.news-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.news-tag.activity {
    background: var(--gradient-accent);
    color: #fff;
}

.news-content {
    padding: 28px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-summary {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.news-date {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.read-more:hover {
    transform: translateX(4px);
    display: inline-block;
}

/* Roadshow List */
.roadshow-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roadshow-item {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.roadshow-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-tech);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadshow-item:hover::before {
    transform: scaleY(1);
}

.roadshow-item:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-4px);
}

.roadshow-date {
    background: var(--gradient-tech);
    color: #fff;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.date-day {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.9;
}

.roadshow-info {
    flex: 1;
}

.roadshow-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.roadshow-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.roadshow-meta {
    display: flex;
    gap: 24px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.partner-item {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 36px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-tech);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover::before {
    transform: scaleX(1);
}

.partner-item:hover {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
}

.partner-logo {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.partner-logo span {
    color: var(--text-secondary);
    font-weight: 600;
}

.partner-logo svg {
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover .partner-logo svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.section-center {
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a2540 0%, #071e33 100%);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-qr {
    text-align: center;
}

.qr-code {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.qr-code svg {
    fill: white;
    transition: all 0.3s;
}

.footer-qr:hover .qr-code svg {
    opacity: 1;
}

.footer-qr p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 12px;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-bottom a:hover {
    color: #fff;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-small {
    max-width: 500px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.modal-close {
    background: var(--bg-tertiary);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.1);
    background: var(--bg-primary);
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-actions {
    text-align: center;
    padding-top: 20px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 24px;
    display: inline-block;
    animation: successBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.success-message p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--gradient-tech);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.4);
}

.scroll-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .quick-access-grid,
    .business-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .project-apply-btn {
        display: none;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .quick-access-grid,
    .business-preview,
    .news-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .roadshow-item {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .roadshow-meta {
        flex-direction: column;
        gap: 12px;
    }

    .modal.active {
        padding: 20px 12px;
    }

    .modal-content {
        border-radius: var(--radius-lg);
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* About Intro */
.about-intro {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stat {
    background: var(--bg-primary);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stat:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 212, 255, 0.15);
}

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Tech News Daily */
.tech-news-daily {
    background: var(--gradient-tech);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.tech-news-daily::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: heroGlow 25s linear infinite reverse;
    pointer-events: none;
}

.tech-news-daily .section-title,
.tech-news-daily .section-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tech-news-daily .section-subtitle {
    opacity: 0.95;
}

.tech-news-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-news-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tech-news-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

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

.tech-news-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tech-news-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 212, 255, 0.3);
}

.tech-news-badge {
    background: var(--gradient-secondary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    height: fit-content;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.tech-news-badge.high-impact {
    background: var(--gradient-accent);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.tech-news-body {
    flex: 1;
}

.tech-news-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tech-news-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 32px;
    }

    .section {
        padding: 50px 0;
    }

    .quick-access-card,
    .business-card {
        padding: 32px 24px;
    }

    .news-content {
        padding: 20px;
    }

    .roadshow-item {
        padding: 24px;
    }

    .tech-news-list {
        grid-template-columns: 1fr;
    }

    .tech-news-item {
        flex-direction: column;
        gap: 12px;
    }

    .tech-news-header h3 {
        font-size: 22px;
    }

    .tech-news-badge {
        align-self: flex-start;
    }
}
