/* Page Banner */
.page-banner {
    margin-top: 72px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::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");
}

.page-title {
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Section Nav */
.section-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 72px;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}

.nav-tabs a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 32px;
    border-radius: 50px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-tabs a.active,
.nav-tabs a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

/* Business Nav */
.business-nav {
    background: var(--bg-secondary);
    padding: 40px 0;
}

.business-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.business-tabs a {
    padding: 16px 40px;
    background: var(--bg-primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.business-tabs a.active,
.business-tabs a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Fund Intro */
.fund-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fund-desc p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.fund-stat {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.fund-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fund-stat .stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

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

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.achievement-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

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

.achievement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
}

.achievement-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.achievement-number {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.achievement-desc {
    color: var(--text-secondary);
    font-size: 15px;
}

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

.case-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);
}

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

.case-image {
    height: 180px;
    background: var(--gradient-primary);
}

.case-content {
    padding: 28px;
}

.case-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.case-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.case-progress span {
    color: var(--text-muted);
}

.case-progress .current {
    color: var(--primary-color);
}

/* Partner Gallery */
.partner-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

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

.partner-logo-bg {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 15px;
}

.partner-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Fund Apply Banner */
.fund-apply-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    background: var(--gradient-primary);
    color: #fff;
    padding: 60px;
    border-radius: var(--radius-xl);
}

.fund-apply-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.fund-apply-content > p {
    margin-bottom: 28px;
    opacity: 0.95;
    font-size: 17px;
    line-height: 1.7;
}

.fund-apply-list {
    list-style: none;
    margin-bottom: 0;
}

.fund-apply-list li {
    margin-bottom: 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fund-apply-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 14px;
}

.fund-apply-note {
    margin-top: 16px;
    font-size: 15px;
    opacity: 0.85;
}

.fund-apply-action {
    text-align: center;
}

/* Investment Features */
.investment-intro > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

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

.feature-item {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.filter-select {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    min-width: 180px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Project List */
.project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-card {
    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);
}

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

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-tag {
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.project-stage {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.project-name {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    gap: 24px;
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Apply Section */
.apply-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.apply-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.apply-content > p {
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.apply-requirements h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.apply-requirements ul {
    list-style: none;
    margin-bottom: 28px;
}

.apply-requirements li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 16px;
}

.apply-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

/* Eco Grid */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eco-card {
    background: var(--bg-primary);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: block;
}

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

.eco-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s;
}

.eco-card:hover .eco-icon {
    transform: scale(1.1);
}

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

.eco-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* E-Plan Preview */
.e-plan-preview {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.e-plan-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.e-plan-content > p {
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.e-plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.e-plan-features .feature-item {
    text-align: left;
    padding: 28px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.e-plan-features .feature-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.e-plan-features h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.e-plan-features p {
    color: var(--text-secondary);
    font-size: 15px;
}

.e-plan-action h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.partner-category {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.partner-category h3 {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-list .partner-item {
    padding: 14px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s;
    font-weight: 600;
}

.partner-list .partner-item:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateX(8px);
}

/* Special Zones Grid */
.special-zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zone-card {
    background: var(--bg-primary);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: block;
    text-decoration: none;
    color: inherit;
}

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

.zone-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s;
}

.zone-card:hover .zone-icon {
    transform: scale(1.1);
}

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

.zone-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
}

.zone-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

/* Roadshow Section */
.roadshow-section {
    margin-bottom: 60px;
}

.roadshow-section-title {
    font-size: 28px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--border-color);
    font-weight: 700;
}

.roadshow-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.roadshow-status.recruiting {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.roadshow-status.upcoming {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.roadshow-status.finished {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.roadshow-item-past {
    opacity: 0.7;
}

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

.community-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);
}

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

.community-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.community-icon {
    font-size: 48px;
    display: inline-block;
}

.community-card h3 {
    font-size: 22px;
    font-weight: 700;
}

.community-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.resource-item:hover {
    background: var(--gradient-primary);
}

.resource-item:hover a {
    color: #fff;
}

.resource-type {
    font-size: 24px;
}

.resource-item a {
    flex: 1;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-small {
    padding: 10px 24px;
    font-size: 15px;
}

/* Search Section */
.search-section {
    padding: 60px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.search-box {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-title {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
}

.tag {
    padding: 8px 20px;
    background: var(--bg-secondary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.tag:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Policy Filters */
.policy-filters {
    margin-bottom: 48px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 12px 32px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Policy List */
.policy-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.policy-card {
    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);
}

.policy-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.policy-level {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.policy-national {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

.policy-provincial {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.policy-city {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.policy-park {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
}

.policy-date {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
}

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

.policy-summary {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.policy-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.policy-tag {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.policy-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

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

.research-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);
}

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

.research-image {
    height: 180px;
    background: var(--gradient-primary);
}

.research-content {
    padding: 28px;
}

.research-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.research-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

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

.research-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.research-date {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.research-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

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

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.timeline-year {
    min-width: 120px;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding-top: 8px;
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
    border-left: 3px solid var(--border-color);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.2);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Organization Chart */
.organization-chart {
    max-width: 900px;
    margin: 0 auto 48px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.org-top {
    margin-bottom: 64px;
}

.org-box {
    padding: 20px 48px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-lg);
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.org-departments {
    flex-wrap: wrap;
}

.org-departments .org-box {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.org-desc {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.strategy-card {
    background: var(--bg-primary);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

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

.strategy-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s;
}

.strategy-card:hover .strategy-icon {
    transform: scale(1.1);
}

.strategy-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.strategy-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 40px;
    min-width: 56px;
}

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.contact-form-wrapper {
    background: var(--bg-primary);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 32px;
    font-weight: 800;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 450px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #fff;
}

.map-icon {
    font-size: 72px;
    margin-bottom: 24px;
    display: inline-block;
}

.map-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.map-content p {
    font-size: 17px;
    margin-bottom: 8px;
    opacity: 0.95;
}

/* Project Apply CTA */
.project-apply-cta {
    text-align: center;
    padding: 80px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-xl);
}

.project-apply-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 800;
}

.project-apply-cta p {
    margin-bottom: 40px;
    opacity: 0.95;
    font-size: 18px;
}

/* Responsive for pages */
@media (max-width: 1200px) {
    .fund-intro,
    .apply-section,
    .e-plan-preview,
    .contact-container,
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fund-stats,
    .achievement-grid,
    .case-grid,
    .partner-gallery,
    .investment-features,
    .eco-grid,
    .community-grid,
    .special-zones-grid,
    .research-grid,
    .partners-showcase,
    .strategy-grid,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nav-tabs {
        gap: 6px;
    }

    .fund-apply-banner,
    .project-apply-cta {
        grid-template-columns: 1fr;
    }

    .fund-apply-action,
    .e-plan-action {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-xl);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

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

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

    .search-box {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 70px 0 50px;
    }

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

    .business-tabs {
        flex-direction: column;
    }

    .business-tabs a {
        width: 100%;
    }

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

    .fund-stats,
    .achievement-grid,
    .case-grid,
    .partner-gallery,
    .investment-features,
    .eco-grid,
    .community-grid,
    .special-zones-grid,
    .research-grid,
    .partners-showcase,
    .strategy-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .e-plan-features {
        grid-template-columns: 1fr;
    }

    .fund-apply-banner,
    .project-apply-cta {
        padding: 40px 24px;
    }

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

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

    .filter-bar {
        flex-direction: column;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-select {
        width: 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 24px;
    }

    .timeline-content {
        padding-left: 20px;
    }

    .timeline-year {
        text-align: left;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .policy-filters,
    .filter-tabs {
        flex-direction: column;
    }

    .filter-tab {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 50px 0 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .fund-apply-banner,
    .project-apply-cta {
        padding: 32px 20px;
    }
}
