/* ========================================
   GMBA Overview Section - Minimalist Grid
   ======================================== */

.gmba-overview {
    padding: 60px 0 40px;
    background: #fff;
    position: relative;
}

/* Header Section */
.overview-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.overview-title {
    font-size: 55px;
    font-weight: 600;
    color: #002a93;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.overview-subtitle {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Info Grid - Minimalist Style */
.overview-info-grid {
    position: relative;
    max-width: 900px;
    margin: 0 auto ;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0.5px solid #e2e8f0;
}

.info-grid-item {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    border-right: 0.5px solid #e2e8f0;
    border-bottom: 0.5px solid #e2e8f0;
    transition: background 0.3s ease;
}

.info-grid-icon {
    width: 40px;
    height: 40px;
    color: #1fdfff;
    margin-bottom: 8px;
}

.info-grid-icon svg {
    width: 100%;
    height: 100%;
}

.info-grid-item:nth-child(3n) {
    border-right: none;
}

.info-grid-item:nth-child(4),
.info-grid-item:nth-child(5),
.info-grid-item:nth-child(6) {
    border-bottom: none;
}

.info-grid-item:hover {
    background: #fafbfc;
}

.info-grid-item-wide {
    grid-column: span 1;
}

.info-grid-label {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.info-grid-value {
    font-size: 18px;
    font-weight: 600;
    color: #002a93;
    line-height: 1.4;
}

/* Content Section */
.overview-content {
    position: relative;
    z-index: 1;
    padding: 48px 0 0 0;
}

.overview-text {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.overview-text:last-child {
    margin-bottom: 0;
}

.overview-text.highlight {
    background: linear-gradient(135deg, rgba(0, 42, 147, 0.05) 0%, rgba(6, 95, 249, 0.03) 100%);
    padding: 24px 28px;
    border-radius: 16px;
    border-left: 4px solid #1fdfff;
    font-weight: 500;
    color: #334155;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .gmba-overview {
        padding: 60px 0 80px;
    }
    
    .overview-title {
        font-size: 24px;
    }
    
    .overview-info-table {
        max-width: 700px;
    }
    
    .info-table-cell {
        padding: 18px 20px;
        gap: 14px;
    }
    
    .info-table-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-table-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {

    .ranking-subtitle {
        font-size: 14px !important;
    }
    .gmba-overview {
        padding: 40px 0 0;
    }
    
    .overview-title {
        font-size: 22px;
    }
    
    .overview-subtitle {
        font-size: 12px;
    }
    
    .overview-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid-item {
        padding: 28px 24px;
    }
    
    .info-grid-item:nth-child(3n) {
        border-right: 0.5px solid #e2e8f0;
    }
    
    .info-grid-item:nth-child(2n) {
        border-right: none;
    }
    
    .info-grid-item:nth-child(4),
    .info-grid-item:nth-child(5),
    .info-grid-item:nth-child(6) {
        border-bottom: 0.5px solid #e2e8f0;
    }
    
    .info-grid-item:nth-child(5),
    .info-grid-item:nth-child(6) {
        border-bottom: none;
    }
    
    .info-grid-value {
        font-size: 16px;
    }
    
    .overview-content {
        padding: 12px;
        text-align: justify;
    }
    
    .overview-text {
        font-size: 15px;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .overview-title {
        font-size: 20px;
    }
    
    .overview-header {
        margin-bottom: 40px;
    }
    
    .overview-info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid-item {
        padding: 12px 12px;
        border-right: none;
    }
    
    .info-grid-item:nth-child(3n) {
        border-right: none;
    }
    
    .info-grid-item:nth-child(2n) {
        border-right: none;
    }
    
    .info-grid-item:nth-child(5) {
        border-bottom: 0.5px solid #e2e8f0;
    }
    
    .info-grid-value {
        font-size: 16px;
    }
}

/* ========================================
   Why GMBA Section
   ======================================== */

.gmba-why {
    padding: 40px 0 60px;
    background: #fff;
}

.section-title-left {
    font-size: 40px;
    font-weight: 600;
    color: #002a93;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 50px;
}

.why-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Why Content - Text Side */
.why-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    font-weight: 400;
    margin: 0;
}

/* Scenarios Section */
.why-scenarios {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 42, 147, 0.08);
}

.scenarios-title {
    font-size: 16px;
    font-weight: 600;
    color: #002a93;
    margin-bottom: 24px;
    line-height: 1.5;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.scenario-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 42, 147, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 42, 147, 0.12);
    border-color: rgba(0, 42, 147, 0.2);
}

.scenario-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(6, 95, 249, 0.25);
}

.scenario-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.scenario-card span {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

/* Conclusion */
.why-conclusion {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    font-weight: 400;
    margin: 0;
    padding: 20px 24px;
    background: linear-gradient(90deg, rgba(0, 42, 147, 0.05) 0%, transparent 100%);
    border-left: 3px solid #002a93;
    border-radius: 0 12px 12px 0;
}

/* Why Content - Image Side */
.why-image-wrapper-new {
    position: relative;
    padding: 50px 0;
}

.why-image-wrapper-new .why-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 42, 147, 0.2);
}

.why-image-wrapper-new .why-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-image-wrapper-new:hover .why-image img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 42, 147, 0.1) 0%, rgba(6, 95, 249, 0.05) 100%);
    border-radius: 24px;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image-wrapper-new {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .why-scenarios {
        padding: 24px;
    }
    
    .why-intro {
        font-size: 16px;
    }
}

/* ========================================
   Why GMBA - Bubble Effect
   ======================================== */

.why-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.why-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 42, 147, 0.15);
    margin: 20px 0;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 气泡卡片主体 */
.why-bubble {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    width: 90%;
    max-width: 700px;
    opacity: 0;
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-bubble.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 气泡内容容器 - Glassmorphism 效果 */
.bubble-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 32px rgba(0, 42, 147, 0.2),
        0 2px 8px rgba(0, 42, 147, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

/* 渐变高光效果 */
.bubble-highlight {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}



/* 图标 */
.bubble-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(6, 95, 249, 0.3);
}

.bubble-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* 气泡文字 */
.bubble-text {
    font-size: 15px;
    line-height: 1.8;
    color: #1e293b;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

/* 小三角箭头 */
.bubble-arrow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 2px 2px rgba(0, 42, 147, 0.1));
}

/* ========================================
   气泡动效 - 响应式调整
   ======================================== */

@media (max-width: 768px) {
    .why-bubble {
        bottom: 20px;
        width: 95%;
        max-width: none;
    }
    
    .bubble-content {
        padding: 20px 24px;
        border-radius: 16px;
    }
    
    .bubble-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }
    
    .bubble-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .bubble-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .bubble-content {
        padding: 16px 20px;
    }
    
    .bubble-text {
        font-size: 13px;
    }
}

/* ========================================
   Who Is It For Section - Dark Glassmorphism
   ======================================== */

.gmba-whoisit {
    padding: 60px 0;
    background-image: url('../images/whatisfor.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* 深色遮罩层 */
.gmba-whoisit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 26, 77, 0.85);
    pointer-events: none;
}

.gmba-whoisit .container {
    position: relative;
    z-index: 1;
}

.gmba-whoisit .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gmba-whoisit .section-title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.gmba-whoisit .section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whoisit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 第一行：2个卡片居中（各占2列，中间留空） */
.whoisit-card:nth-child(1) {
    grid-column: 2 / 4;
}

.whoisit-card:nth-child(2) {
    grid-column: 4 / 6;
}

/* 第二行：3个卡片等分 */
.whoisit-card:nth-child(3) {
    grid-column: 1 / 3;
}

.whoisit-card:nth-child(4) {
    grid-column: 3 / 5;
}

.whoisit-card:nth-child(5) {
    grid-column: 5 / 7;
}

/* 毛玻璃卡片效果 */
.whoisit-card {
    text-align: left;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whoisit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1fdfff 0%, #065ff9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whoisit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.whoisit-card:hover::before {
    opacity: 1;
}

.whoisit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    border-radius: 10px;
    color: #fff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 图标悬浮光晕效果 */
.whoisit-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1fdfff 0%, #065ff9 100%);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.whoisit-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 卡片悬浮时图标动效 */
.whoisit-card:hover .whoisit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(6, 95, 249, 0.4);
}

.whoisit-card:hover .whoisit-icon::before {
    opacity: 0.6;
}

.whoisit-card:hover .whoisit-icon svg {
    transform: scale(1.15);
}

/* 各卡片独特的图标动效 */
.whoisit-card:nth-child(1):hover .whoisit-icon svg {
    animation: globe-spin 1s ease-in-out;
}

.whoisit-card:nth-child(2):hover .whoisit-icon svg {
    animation: network-pulse 0.6s ease-in-out;
}

.whoisit-card:nth-child(3):hover .whoisit-icon svg {
    animation: family-bounce 0.8s ease-in-out;
}

.whoisit-card:nth-child(4):hover .whoisit-icon svg {
    animation: tech-slide 0.7s ease-in-out;
}

.whoisit-card:nth-child(5):hover .whoisit-icon svg {
    animation: star-twinkle 0.8s ease-in-out;
}

/* 地球旋转 */
@keyframes globe-spin {
    0% { transform: scale(1.15) rotate(0deg); }
    50% { transform: scale(1.15) rotate(180deg); }
    100% { transform: scale(1.15) rotate(360deg); }
}

/* 网络脉冲 */
@keyframes network-pulse {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.3); }
}

/* 家族传承跳动 */
@keyframes family-bounce {
    0%, 100% { transform: scale(1.15) translateY(0); }
    25% { transform: scale(1.15) translateY(-4px); }
    50% { transform: scale(1.15) translateY(2px); }
    75% { transform: scale(1.15) translateY(-2px); }
}

/* 技术滑动 */
@keyframes tech-slide {
    0% { transform: scale(1.15) translateX(0); }
    25% { transform: scale(1.15) translateX(3px); }
    75% { transform: scale(1.15) translateX(-3px); }
    100% { transform: scale(1.15) translateX(0); }
}

/* 星星闪烁 */
@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1.15); }
    50% { opacity: 0.7; transform: scale(1.25); }
}

.whoisit-icon svg {
    width: 24px;
    height: 24px;
}

.whoisit-card h3 {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.whoisit-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    letter-spacing: 0.02em;
    padding-left: 16px;
    border-left: 2px solid rgba(31, 223, 255, 0.3);
    transition: all 0.3s ease;
}

/* 悬停时 p 标签效果 */
.whoisit-card:hover p {
    color: rgba(255, 255, 255, 0.9);
    border-left-color: rgba(31, 223, 255, 0.6);
    padding-left: 20px;
}

@media (max-width: 768px) {
    .gmba-why {
        padding: 30px 0 50px;
    }
}

@media (max-width: 992px) {
    .whoisit-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .whoisit-card:nth-child(1),
    .whoisit-card:nth-child(2),
    .whoisit-card:nth-child(3),
    .whoisit-card:nth-child(4),
    .whoisit-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .gmba-whoisit {
        padding: 40px 0;
    }
    
    .whoisit-grid {
        grid-template-columns: 1fr;
    }
    
    .whoisit-card:nth-child(1),
    .whoisit-card:nth-child(2),
    .whoisit-card:nth-child(3),
    .whoisit-card:nth-child(4),
    .whoisit-card:nth-child(5) {
        grid-column: auto;
    }
    
    .whoisit-card {
        padding: 24px 20px;
    }
}

/* ========================================
   Rankings Section - 数据展示风格
   ======================================== */

.gmba-ranking {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.ranking-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #475569;
    letter-spacing: 0.05em;
    margin: -30px 0 40px 0;
    position: relative;
    display: block;
    text-align: center;
}

.ranking-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #002a93 0%, #1fdfff 100%);
    border-radius: 2px;
}

/* 背景装饰 */
.gmba-ranking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(6, 95, 249, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ranking-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 42, 147, 0.08);
    overflow: hidden;
}

/* 顶部渐变条 */
.ranking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ranking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 42, 147, 0.12);
    border-color: rgba(6, 95, 249, 0.15);
}

.ranking-card:hover::before {
    opacity: 1;
}

/* 第一个排名卡片着重显示 */
.ranking-card:first-child {
    transform: scale(1.05);
    box-shadow: 0 24px 48px rgba(0, 42, 147, 0.18);
    border-color: rgba(0, 42, 147, 0.15);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    z-index: 2;
}

.ranking-card:first-child::before {
    opacity: 1;
    height: 5px;
}

.ranking-card:first-child .ranking-number {
    font-size: 56px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ranking-card:first-child:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 28px 56px rgba(0, 42, 147, 0.22);
}

/* 排名数字 */
.ranking-number {
    font-size: 48px;
    font-weight: 700;
    color: #002a93;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ranking-number sup {
    font-size: 20px;
    font-weight: 600;
    -webkit-text-fill-color: #065ff9;
}

/* 标签 */
.ranking-label {
    font-size: 13px;
    color: #065ff9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* 排名名称 */
.ranking-name {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* 来源 */
.ranking-source {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 42, 147, 0.08);
}

/* 注释 */
.gmba-ranking .note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 32px;
    font-style: italic;
}

/* 响应式 */
@media (max-width: 992px) {
    .ranking-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ranking-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .ranking-grid {
        grid-template-columns: 1fr;
    }
    
    .ranking-card {
        padding: 28px 20px;
    }
}

/* 响应式：第一个卡片在移动端恢复正常大小 */
@media (max-width: 768px) {

    .section-title-left {
        font-size: 26px;
        font-weight: 600;
        color: #002a93;
        line-height: 1.3;
        letter-spacing: -0.02em;
        text-align: left;
        margin: 28px 0;
    }

    .ranking-card:first-child {
        transform: none;
    }
    
    .ranking-card:first-child .ranking-number {
        font-size: 48px;
    }
    
    .ranking-card:first-child:hover {
        transform: translateY(-8px);
    }
}

/* ========================================
   Calendar Section - 纵向时间线
   ======================================== */

.gmba-calendar {
    padding: 40px 0 80px;
    background: #fff;
    position: relative;
}

.calendar-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: -24px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

/* 时间线容器 */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 80px;
}

/* 中央垂直线 */
.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
    border-radius: 2px;
}

/* 时间线项目 */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* 时间标记点 */
.timeline-marker {
    position: absolute;
    left: -80px;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(6, 95, 249, 0.3);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(6, 95, 249, 0.5);
}

/* 连接线（标记点到内容） */
.timeline-marker::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #065ff9, rgba(6, 95, 249, 0.2));
}

/* 时间线内容卡片 */
.timeline-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 42, 147, 0.1);
    box-shadow: 0 4px 20px rgba(0, 42, 147, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #002a93 0%, #065ff9 100%);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    box-shadow: 0 8px 40px rgba(0, 42, 147, 0.12);
    border-color: rgba(6, 95, 249, 0.2);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

/* 标题区域 */
.timeline-header {
    margin-bottom: 16px;
}

.timeline-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002a93;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.timeline-tag {
    display: inline-block;
    font-size: 12px;
    color: #065ff9;
    background: rgba(6, 95, 249, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* 主题引言 */
.timeline-theme {
    font-size: 15px;
    color: #065ff9;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid #1fdfff;
}

/* 列表 */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 42, 147, 0.05);
}

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    border-radius: 50%;
}

/* 响应式 */
@media (max-width: 768px) {
    .timeline {
        padding-left: 60px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: -60px;
        width: 40px;
        height: 40px;
    }
    
    .timeline-number {
        font-size: 14px;
    }
    
    .timeline-marker::after {
        width: 12px;
    }
    
    .timeline-content {
        padding: 24px 20px;
    }
    
    .timeline-header h3 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .timeline {
        padding-left: 50px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: -50px;
        width: 32px;
        height: 32px;
    }
    
    .timeline-number {
        font-size: 12px;
    }
    
    .timeline-marker::after {
        width: 8px;
    }
    
    .timeline-content {
        padding: 20px 16px;
    }
    
    .gmba-calendar {
        padding: 40px 0 60px;
    }
}

/* ========================================
   Admissions Section - 申请模块
   ======================================== */

.gmba-admissions {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* 标题栏 */
.admissions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.admissions-header .section-title-left {
    margin-bottom: 0;
}

/* Apply Now 按钮 */
.apply-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(6, 95, 249, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.apply-now-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.apply-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 95, 249, 0.4);
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
}

.apply-now-btn:hover svg {
    transform: translateX(4px);
}

/* 桌面端隐藏手机端按钮 */
.apply-now-btn-mobile {
    display: none;
}

/* 左文右图布局 */
.admissions-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* 左侧内容 */
.admissions-content {
    position: relative;
}

.admissions-intro {
    font-size: 17px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(0, 42, 147, 0.03) 0%, rgba(6, 95, 249, 0.05) 100%);
    border-left: 3px solid #002a93;
    border-radius: 0 12px 12px 0;
    position: relative;
}



/* 右侧图片 */
.admissions-image {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 42, 147, 0.12);
}

.admissions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.admissions-image:hover img {
    transform: scale(1.05);
}

/* 图片装饰边框 */
.admissions-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, #002a93, #065ff9, #1fdfff) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admissions-image:hover::before {
    opacity: 1;
}

/* 卡片样式 */
.admissions-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 42, 147, 0.08);
    box-shadow: 0 4px 20px rgba(0, 42, 147, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admissions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admissions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 42, 147, 0.12);
    border-color: rgba(6, 95, 249, 0.15);
}

.admissions-card:hover::before {
    opacity: 1;
}

/* 卡片头部 */
.admissions-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 42, 147, 0.08);
}

.admissions-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    border-radius: 10px;
    margin-right: 12px;
    transition: all 0.4s ease;
}

.admissions-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.admissions-card:hover .admissions-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(6, 95, 249, 0.3);
}

.admissions-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002a93;
    margin: 0;
}

/* 列表样式 */
.admissions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admissions-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 42, 147, 0.05);
}

.admissions-list li:last-child {
    border-bottom: none;
}

.admissions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    border-radius: 50%;
}

/* Timeline Card - 重新设计 */
.admissions-timeline-card {
    margin-top: 24px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 42, 147, 0.1);
    box-shadow: 0 8px 24px rgba(0, 42, 147, 0.08);
    transition: all 0.3s ease;
}

.admissions-timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 42, 147, 0.12);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 42, 147, 0.08);
}

.timeline-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(6, 95, 249, 0.3);
    flex-shrink: 0;
}

.timeline-card-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.timeline-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #002a93;
    margin: 0;
    letter-spacing: 0.5px;
}

.timeline-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-period {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 42, 147, 0.03);
    border-radius: 8px;
}

.period-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.period-date {
    font-size: 14px;
    color: #002a93;
    font-weight: 600;
}

.timeline-deadline {
    padding: 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 146, 60, 0.08) 100%);
    border-radius: 10px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.deadline-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.deadline-date {
    font-size: 18px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 8px;
}

.deadline-benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.benefit-item {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.benefit-separator {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 600;
}

/* 响应式 */
@media (max-width: 768px) {
    .admissions-timeline-card {
        padding: 20px;
    }
    
    .timeline-card-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .timeline-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-card-title {
        font-size: 15px;
    }
    
    .timeline-period {
        padding: 10px 12px;
    }
    
    .period-date {
        font-size: 13px;
    }
    
    .timeline-deadline {
        padding: 14px;
    }
    
    .deadline-date {
        font-size: 16px;
    }
    
    .deadline-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .benefit-separator {
        display: none;
    }
}

/* 右侧流程图容器 */
.admissions-process-wrapper {
    display: flex;
    align-items: stretch;
}

/* 流程图卡片 */
.process-flow-card {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 24px 28px;
    border: 1px solid rgba(0, 42, 147, 0.1);
    box-shadow: 0 8px 32px rgba(0, 42, 147, 0.08);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 卡片装饰背景 */
.process-flow-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 95, 249, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* 流程图标题 */
.process-flow-title {
    font-size: 18px;
    font-weight: 600;
    color: #002a93;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(6, 95, 249, 0.3);
}

.title-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* 流程步骤容器 */
.process-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 单个流程步骤 */
.flow-step {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 36px;
}

.flow-step.final {
    padding-bottom: 0;
}

/* 步骤标记区域 */
.flow-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
}

/* 步骤数字 */
.flow-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(6, 95, 249, 0.35);
    position: relative;
    z-index: 2;
}

/* 连接线 */
.flow-line {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: linear-gradient(180deg, #065ff9 0%, #1fdfff 100%);
    margin-top: 6px;
    border-radius: 2px;
    opacity: 0.4;
}

.flow-step.final .flow-line {
    display: none;
}

/* 完成标记 */
.flow-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    position: relative;
    z-index: 2;
}

.flow-check svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* 步骤内容 */
.flow-step-content {
    flex: 1;
    padding-top: 4px;
}

.flow-step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.flow-step-content p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* 悬停效果 */
.flow-step:hover .flow-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(6, 95, 249, 0.45);
}

.flow-step:hover .flow-step-content h4 {
    color: #002a93;
}

/* 旧版样式保留兼容 */
.application-process {
    display: none;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: #002a93;
    margin-bottom: 20px;
    text-align: center;
}

/* 步骤容器 */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* 单个步骤 */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(6, 95, 249, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(6, 95, 249, 0.4);
}

.step-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

/* 箭头 */
.step-arrow {
    display: flex;
    align-items: center;
    color: #065ff9;
    opacity: 0.5;
}

.step-arrow svg {
    width: 20px;
    height: 20px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .admissions-layout {
        gap: 40px;
    }
    
    .admissions-image {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .admissions-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .admissions-process-wrapper {
        order: -1;
    }
    
    .process-flow-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .gmba-admissions {
        padding: 30px 0 50px;
    }
    
    .admissions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    /* 手机端隐藏 header 中的按钮 */
    .admissions-header .apply-now-btn {
        display: none;
    }
    
    /* 手机端显示底部按钮 */
    .apply-now-btn-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #f97316 0%, #f97316 100%);
        color: #fff;
        padding: 14px 32px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        margin: 30px auto 0;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .apply-now-btn-mobile svg {
        width: 18px;
        height: 18px;
    }
    
    .apply-now-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .admissions-card {
        padding: 20px;
    }
    
    .admissions-timeline-bar {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .timeline-bar-icon {
        width: 32px;
        height: 32px;
    }
    
    .timeline-bar-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .timeline-bar-content {
        gap: 8px;
    }
    
    .timeline-bar-date {
        font-size: 14px;
    }
    
    .application-process {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h4 {
        font-size: 13px;
    }
    
    .process-flow-card {
        padding: 20px 24px;
    }
    
    .process-flow-title {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .title-icon {
        width: 32px;
        height: 32px;
    }
    
    .flow-number,
    .flow-check {
        width: 36px;
        height: 36px;
    }
    
    .flow-step-content h4 {
        font-size: 14px;
    }
    
    .flow-step {
        gap: 14px;
        padding-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        gap: 12px;
    }

    .step-arrow {
        display: none;
    }

    .process-step {
        flex: 0 0 45%;
    }

    .admissions-image {
        height: 250px;
    }
}

/* ========================================
   Fees & Scholarships Section - Dark Glassmorphism
   ======================================== */


.gmba-fees-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.gmba-fees-new::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.fees-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.fees-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: center;
}

/* 左侧图片 */
.fees-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 42, 147, 0.15);
    height: 100%;
    min-height: 500px;
    max-height: 620px;
}

.fees-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
}

/* 右侧内容 */
.fees-content {
    padding: 0;
}

.fees-title {
    font-size: 32px;
    font-weight: 700;
    color: #002a93;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
    margin-bottom: 40px;
    border-radius: 2px;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

/* Tuition Section */
.tuition-section {
    margin-bottom: 40px;
}

.tuition-amount-new {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.currency-new {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.amount-new {
    font-size: 20px;
    font-weight: 700;
    color: #002a93;
    line-height: 1;
    letter-spacing: -0.02em;
}

.tuition-note {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Scholarships Section */
.scholarships-section {
    margin-bottom: 24px;
}

.scholarships-intro {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Scholarship List */
.scholarship-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.scholarship-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.scholarship-list-item:last-child {
    border-bottom: none;
}

.scholarship-list-item:hover {
    padding-left: 8px;
}

.scholarship-list-item:hover .scholarship-bullet {
    background: #065ff9;
    transform: scale(1.2);
}

.scholarship-list-item:hover .scholarship-name {
    color: #065ff9;
}

.scholarship-bullet {
    width: 8px;
    height: 8px;
    background: #002a93;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scholarship-name {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    transition: color 0.3s ease;
}

/* Disclaimer */
.fees-disclaimer {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 8px;
}

/* 分期付款时间轴 */
.payment-schedule {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.payment-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.payment-dot.active {
    background: #1fdfff;
    border-color: #1fdfff;
    box-shadow: 0 0 12px rgba(31, 223, 255, 0.4);
}

.payment-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #1fdfff 0%, rgba(255, 255, 255, 0.2) 100%);
    margin: 0 8px;
    margin-bottom: 24px;
}

.payment-info {
    text-align: center;
}

.payment-date {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.payment-amount {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* 响应式 */
@media (max-width: 992px) {
    .gmba-fees-new {
        padding: 60px 0;
    }
    
    .fees-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fees-image {
        height: 300px;
        min-height: auto;
        max-height: none;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .fees-title {
        font-size: 28px;
    }
    
    .scholarship-list-item {
        padding: 10px 0;
    }
    
    .scholarship-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .gmba-fees-new {
        padding: 48px 0;
    }
    
    .fees-container {
        padding: 0 20px;
    }
    
    .fees-image {
        height: 250px;
    }
    
    .fees-title {
        font-size: 26px;
    }
    
    .amount-new {
        font-size: 18px;
    }
    
    .scholarship-list-item {
        padding: 10px 0;
    }
    
    .scholarship-name {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .scholarship-list-item {
        padding: 10px 0;
    }
    
    .scholarship-name {
        font-size: 13px;
    }
}

/* ========================================
   Professional Development Section - Career Stats
   ======================================== */

.gmba-professional-development {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.gmba-professional-development::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 50%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(31, 223, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.gmba-professional-development::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 50%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(6, 95, 249, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.development-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.development-header .section-title {
    font-size: 40px;
    font-weight: 600;
    color: #002a93;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.development-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 数据卡片网格 */
.development-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* 数据卡片 */
.development-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 42, 147, 0.08);
    overflow: hidden;
}

/* 顶部渐变条 */
.development-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.development-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 42, 147, 0.12);
    border-color: rgba(6, 95, 249, 0.15);
}

.development-stat-card:hover::before {
    opacity: 1;
}

/* 图标 */
.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    transition: transform 0.4s ease;
}

.development-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(6, 95, 249, 0.3);
}

.development-stat-card:hover .stat-icon svg {
    transform: scale(1.15);
}

/* 数据数字 */
.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #002a93;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.stat-percent {
    font-size: 28px;
    font-weight: 600;
    -webkit-text-fill-color: #065ff9;
}

/* UNLIMITED 和 LIFELONG 特殊样式 */
.stat-unlimited,
.stat-lifelong {
    font-size: 24px;
    letter-spacing: 1px;
    -webkit-text-fill-color: #065ff9;
    font-weight: 700;
}

/* 标签 */
.stat-label {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* 描述文字 */
.stat-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 底部信息区 */
.development-footer {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 42, 147, 0.1);
    position: relative;
    z-index: 1;
}

/* 注释 */
.development-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.development-note svg {
    flex-shrink: 0;
    color: #065ff9;
    opacity: 0.7;
}

/* 报告下载链接 */
.development-report-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(6, 95, 249, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.development-report-link svg {
    transition: transform 0.3s ease;
}

.development-report-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 95, 249, 0.4);
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
}

.development-report-link:hover svg {
    transform: translateY(3px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .development-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-unlimited,
    .stat-lifelong {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .gmba-professional-development {
        padding: 60px 0;
    }
    
    .development-header .section-title {
        font-size: 32px;
    }
    
    .development-subtitle {
        font-size: 16px;
    }
    
    .development-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .development-stat-card {
        padding: 24px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-percent {
        font-size: 24px;
    }
    
    .stat-unlimited,
    .stat-lifelong {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .stat-desc {
        font-size: 13px;
    }
    
    .development-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .development-report-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gmba-professional-development {
        padding: 50px 0;
    }
    
    .development-header {
        margin-bottom: 40px;
    }
    
    .development-header .section-title {
        font-size: 28px;
    }
    
    .development-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .development-stat-card {
        padding: 24px 20px;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
    }
    
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-percent {
        font-size: 20px;
    }
    
    .stat-unlimited,
    .stat-lifelong {
        font-size: 18px;
    }
}

/* ========================================
   Partner Enterprises Section - 合作伙伴展示
   ======================================== */

.gmba-partner-enterprises {
    padding: 50px 0 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.gmba-partner-enterprises::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 42, 147, 0.15) 50%, transparent 100%);
}

/* 标题区域 */
.partner-header {
    text-align: center;
    margin-bottom: 50px;
}

.partner-header .section-title {
    font-size: 40px;
    font-weight: 600;
    color: #002a93;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.partner-intro {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* 小标题区域 */
.partner-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.partner-section-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002a93;
    margin: 0;
}

.title-decoration {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #1fdfff 0%, #065ff9 50%, #002a93 100%);
    position: relative;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #1fdfff;
    border-radius: 50%;
}

.title-decoration::before {
    left: 0;
}

.title-decoration::after {
    right: 0;
}

/* Logo 展示区域 */
.partner-logo-wrapper {
    max-width: 1100px;
    margin: 0 auto 50px;
}

.partner-logo-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 42, 147, 0.08);
    box-shadow: 0 8px 30px rgba(0, 42, 147, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.partner-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
}

.partner-logo-container:hover {
    box-shadow: 0 16px 50px rgba(0, 42, 147, 0.12);
    transform: translateY(-4px);
}

.partner-logo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-container:hover .partner-logo-image {
    transform: scale(1.02);
}

/* 统计数据区域 */
.partner-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 42, 147, 0.03) 0%, rgba(6, 95, 249, 0.03) 100%);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-stat-item {
    text-align: center;
    flex: 1;
}

.partner-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #002a93;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.partner-stat-item:hover .partner-stat-number {
    transform: scale(1.1);
}

.stat-plus {
    font-size: 32px;
    font-weight: 600;
    -webkit-text-fill-color: #1fdfff;
}

.partner-stat-label {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.partner-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 42, 147, 0.2) 50%, transparent 100%);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gmba-partner-enterprises {
        padding: 50px 0 20px;
    }
    
    .partner-header .section-title {
        font-size: 32px;
    }
    
    .partner-intro {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .partner-section-title {
        flex-direction: column;
        gap: 16px;
    }
    
    .partner-section-title h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .title-decoration {
        display: none;
    }
    
    .partner-logo-container {
        padding: 24px 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .partner-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 42, 147, 0.2) 50%, transparent 100%);
    }
    
    .partner-stat-number {
        font-size: 40px;
    }
    
    .stat-plus {
        font-size: 28px;
    }
    
    .partner-stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gmba-partner-enterprises {
        padding: 50px 0 20px;
    }
    
    .partner-header {
        margin-bottom: 40px;
    }
    
    .partner-header .section-title {
        font-size: 28px;
    }
    
    .partner-logo-container {
        padding: 20px 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .partner-stat-number {
        font-size: 36px;
    }
    
    .stat-plus {
        font-size: 24px;
    }
}

/* ========================================
   Related Programs Section - 相关项目推荐（紧凑版）
   ======================================== */

.gmba-related {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.gmba-related::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(31, 223, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.gmba-related .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.gmba-related .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #002a93;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.gmba-related .section-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* 项目卡片网格 */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 项目卡片 */
.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 42, 147, 0.08);
    position: relative;
    display: flex;
    flex-direction: row;
    height: 280px;
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #002a93 0%, #065ff9 50%, #1fdfff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 42, 147, 0.12);
    border-color: rgba(6, 95, 249, 0.2);
}

.related-card:hover::before {
    opacity: 1;
}

/* 图片区域 */
.related-image {
    position: relative;
    width: 38%;
    min-width: 200px;
    height: 100%;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

/* 徽章 */
.program-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(6, 95, 249, 0.3);
    z-index: 2;
}

/* 内容区域 */
.related-content {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.related-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #002a93;
    margin-bottom: 2px;
}

.program-partner {
    font-size: 12px;
    color: #065ff9;
    font-weight: 600;
    margin-bottom: 6px;
}

.program-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 详细信息网格 */
.program-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(0, 42, 147, 0.03) 0%, rgba(6, 95, 249, 0.03) 100%);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.detail-icon svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.related-card:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.detail-text .label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.detail-text .value {
    font-size: 12px;
    color: #1e293b;
    font-weight: 600;
}

/* 探索按钮 */
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(6, 95, 249, 0.3);
    align-self: flex-end;
}

.btn-explore::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #065ff9 0%, #1fdfff 100%);
    box-shadow: 0 5px 20px rgba(6, 95, 249, 0.4);
    transform: translateY(-2px);
}

.btn-explore:hover::after {
    transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .gmba-related {
        padding: 40px 0;
    }
    
    .gmba-related .section-title {
        font-size: 28px;
    }
    
    .related-card {
        height: auto;
        flex-direction: column;
    }
    
    .related-image {
        width: 100%;
        height: 180px;
    }
    
    .related-content {
        padding: 16px;
    }
    
    .related-content h3 {
        font-size: 18px;
    }
    
    .program-details {
        padding: 10px;
        gap: 8px;
    }
    
    .detail-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .gmba-related {
        padding: 35px 0;
    }
    
    .gmba-related .section-header {
        margin-bottom: 25px;
    }
    
    .gmba-related .section-title {
        font-size: 24px;
    }
    
    .related-image {
        height: 160px;
    }
    
    .related-content {
        padding: 14px;
    }
    
    .related-content h3 {
        font-size: 17px;
    }
    
    .program-desc {
        font-size: 12px;
    }
    
    .program-details {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .btn-explore {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Contact Us Section - 联系我们模块（紧凑版）
   ======================================== */

/* ========================================
   Contact Section - Elegant Redesign
   ======================================== */
.gmba-contact {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* 背景装饰 */
.gmba-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(6, 95, 249, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* 头部居中标题 */
.contact-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header-center .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #002a93;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-header-center .section-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* 双卡片布局 */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* 卡片基础样式 */
.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 42, 147, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover,
.contact-form-card:hover {
    box-shadow: 0 8px 40px rgba(0, 42, 147, 0.12);
    transform: translateY(-2px);
}

/* 卡片头部 */
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 42, 147, 0.25);
}

.header-icon svg {
    width: 24px;
    height: 24px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

/* 联系信息列表 */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065ff9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s;
}

.info-value:hover {
    color: #065ff9;
}

/* 工作时间 */
.working-hours {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(6, 95, 249, 0.15);
}

.hours-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065ff9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hours-icon svg {
    width: 20px;
    height: 20px;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hours-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

/* 优雅表单样式 */
.contact-form-elegant {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.3s ease;
}

/* 下拉框特殊样式 - 精致美化版 */
.form-field-select {
    position: relative;
}

.form-field-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 44px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    font-weight: 500;
}

.form-field-select:hover select {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 42, 147, 0.08);
}

.form-field-select select:focus {
    background: #ffffff;
    border-color: #065ff9;
    box-shadow: 0 0 0 4px rgba(6, 95, 249, 0.1);
}

/* 下拉选项样式 */
.form-field-select select option {
    padding: 12px 16px;
    font-size: 15px;
    color: #1e293b;
    background: #ffffff;
}

.form-field-select select option:first-child {
    color: #94a3b8;
    font-style: italic;
}

.form-field-select select option:hover,
.form-field-select select option:focus {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    color: #065ff9;
}

.form-field-select select option:checked {
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #ffffff;
}

/* 下拉箭头容器 */
.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.select-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* 下拉框聚焦或选中时的箭头样式 */
.form-field-select select:focus + label + .select-arrow,
.form-field-select select:valid + label + .select-arrow {
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 42, 147, 0.3);
}

.form-field-select select:focus + label + .select-arrow svg,
.form-field-select select:valid + label + .select-arrow svg {
    transform: rotate(180deg);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #f8fafc;
    padding: 0 4px;
}

.form-field textarea + label {
    top: 24px;
    transform: translateY(-50%);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-field input:not(:placeholder-shown),
.form-field textarea:not(:placeholder-shown),
.form-field select:valid {
    border-color: #065ff9;
    background: #fff;
    outline: none;
}

.form-field input:focus + label,
.form-field textarea:focus + label,
.form-field select:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:valid + label {
    top: -10px;
    transform: translateY(0);
    font-size: 12px;
    color: #065ff9;
    font-weight: 600;
}

/* 下拉框标签特殊处理 */
.form-field-select select:valid + label {
    color: #065ff9;
}

/* 隐私条款复选框 */
.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.privacy-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: #065ff9;
}

.privacy-link {
    color: #065ff9;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #002a93;
}

/* 提交按钮 */
.btn-submit-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 42, 147, 0.3);
    margin-top: 8px;
}

.btn-submit-elegant svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-submit-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 42, 147, 0.4);
}

.btn-submit-elegant:hover svg {
    transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .gmba-contact {
        padding: 60px 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 32px;
    }
    
    .contact-header-center .section-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .gmba-contact {
        padding: 48px 0;
    }
    
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-header-center .section-title {
        font-size: 28px;
    }
    
    .contact-header-center .section-subtitle {
        font-size: 14px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }
    
    .card-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .header-icon {
        width: 40px;
        height: 40px;
    }
    
    .header-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .card-header h3 {
        font-size: 18px;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .form-field input,
    .form-field textarea,
    .form-field select {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .form-field-select select {
        padding-right: 40px;
    }
    
    .select-arrow {
        width: 24px;
        height: 24px;
        right: 10px;
    }
    
    .select-arrow svg {
        width: 12px;
        height: 12px;
    }
    
    .btn-submit-elegant {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ========================================
   Success Modal Styles
   ======================================== */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.active {
    display: flex;
    opacity: 1;
}

.success-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 42, 147, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal.active .success-modal-content {
    transform: scale(1);
}

.success-modal-header {
    margin-bottom: 24px;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.success-modal-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #002a93;
    margin: 0;
}

.success-modal-body {
    margin-bottom: 32px;
}

.success-message {
    font-size: 18px;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.5;
}

.success-message span {
    font-weight: 600;
    color: #002a93;
}

.success-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.success-modal-close {
    background: linear-gradient(135deg, #002a93 0%, #065ff9 100%);
    color: #fff;
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 42, 147, 0.3);
}

@media (max-width: 768px) {
    .success-modal-content {
        padding: 32px 24px;
        max-width: 340px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon svg {
        width: 30px;
        height: 30px;
    }

    .success-modal-header h3 {
        font-size: 24px;
    }

    .success-message {
        font-size: 16px;
    }

    .success-subtitle {
        font-size: 14px;
    }

    .success-modal-close {
        padding: 12px 40px;
        font-size: 15px;
    }
}
