/* 全局樣式 */
:root {
    --primary-color: #0fae96;
    --secondary-color: #f6b756;
    --accent-color: #0f766e;
    --dark-color: #1f2933;
    --light-color: #f5f7fb;
    --white-color: #ffffff;
    --text-color: #445369;
    --border-color: #e2e8f0;
    --shadow: 0 12px 40px rgba(15, 174, 150, 0.15);
    --shadow-hover: 0 25px 60px rgba(15, 174, 150, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 理念宣言区域特殊优化 - 大幅减少边距，让内容更贴近屏幕边缘 */
.mission-section .container {
    padding: 0 5%; /* 从固定20px改为5%屏幕宽度，大幅减少边距 */
    max-width: 1400px; /* 增加最大宽度，让内容区域更宽 */
}

/* 象征含义区域特殊优化 - 减少边距 */
.symbolic-section .container {
    padding: 0 5%; /* 与理念宣言区域保持一致 */
    max-width: 1400px;
}

/* 愿景区域特殊优化 - 减少边距 */
.vision-section .container {
    padding: 0 5%; /* 与其他区域保持一致 */
    max-width: 1400px;
}

/* 導航欄 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 28px;
}

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

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.login-link {
    background: var(--primary-color);
    color: var(--white-color) !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.login-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.login-link::after {
    display: none;
}

/* 未来展望高亮按钮 */
.nav-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9800 50%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    color: var(--white-color) !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite, pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(246, 183, 86, 0.4);
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-highlight::before {
    content: '✨';
    margin-right: 6px;
    animation: sparkle 1.5s ease-in-out infinite;
}

.nav-highlight::after {
    display: none !important;
}

.nav-highlight:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(246, 183, 86, 0.5);
    color: var(--white-color) !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(246, 183, 86, 0.4);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(246, 183, 86, 0.6), 0 0 30px rgba(246, 183, 86, 0.3);
    }
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero 輪播區塊 - 由 slider.css 控制 */
/* 所有輪播圖樣式已移至 assets/css/slider.css */

/* 動畫 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* 滾動指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--white-color);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 10px; }
    50% { opacity: 1; top: 20px; }
}

/* 按鈕樣式 */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary-color), #12c2b4);
    color: var(--white-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: rgba(15, 174, 150, 0.08);
    color: var(--accent-color);
    border: 2px solid rgba(15, 174, 150, 0.2);
}

.btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 15px 45px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* 區塊標題 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
}

.section-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: inline-block;
}

/* Hero Splash */
.hero-splash {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #e8fff7, #f6fbff);
    position: relative;
    overflow: hidden;
}

.hero-splash::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 174, 150, 0.15), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-message {
    text-align: center;
}

.hero-message h1 {
    font-size: 48px;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 13px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-formula {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white-color);
    border-radius: 18px;
    padding: 20px 25px;
    box-shadow: var(--shadow);
    margin: 0 auto 25px auto;
    text-align: center;
}

.hero-formula span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
}

.hero-formula strong {
    font-size: 28px;
    color: var(--dark-color);
}

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

.hero-link {
    color: var(--dark-color);
}

.hero-highlight .highlight-card {
    background: var(--white-color);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
}

.highlight-card h3 {
    color: var(--dark-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-card li {
    font-size: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-card li::before {
    content: '✦';
    color: var(--secondary-color);
    font-size: 16px;
}

/* 使命敘事 - 优化版：减少留白，增大字体，提升信息密度 */
.mission-section {
    padding: 35px 0; /* 顶部留白进一步缩减：从45px减至35px */
    background: var(--white-color);
}

.mission-grid {
    display: grid;
    grid-template-columns: 48% 48%; /* 左右各占48%，增加内容宽度占比 */
    gap: 20px; /* 元素间距进一步缩减：从28px减至20px，拉近两个板块 */
    align-items: flex-start; /* 改为顶部对齐，避免垂直居中造成的额外留白 */
}

/* 理念宣言小标题：适当放大 */
.mission-text .section-eyebrow {
    font-size: 13px;
    margin-bottom: 8px; /* 进一步减少下方间距 */
}

/* 主标题：根据页面宽度自适应，放大至1.5-2倍，加粗，增加字间距 */
.mission-text h2 {
    font-size: clamp(42px, 5.5vw, 72px); /* 响应式字体：最小42px，最大72px，根据视口宽度自适应 */
    font-weight: 800; /* 加粗增强视觉重量 */
    color: var(--dark-color);
    margin-bottom: 12px; /* 减少标题下方间距 */
    letter-spacing: 2px; /* 增加字间距至2px，提升放大后的阅读舒适度 */
    line-height: 1.15; /* 更紧凑的行高 */
}

/* 正文内容：放大至1.2-1.3倍，建议16-18px */
.mission-text p {
    color: var(--text-color);
    line-height: 1.75; /* 保持清晰易读的行高 */
    margin-bottom: 8px; /* 段落间距进一步缩减至53%：从15px减至8px */
    font-size: 18px; /* 从17px放大至18px (约1.06倍，符合16-18px要求) */
}

/* 右侧面板：减少内边距，让内容更紧凑 */
.mission-panel {
    background: linear-gradient(135deg, rgba(15, 174, 150, 0.08), rgba(246, 183, 86, 0.15));
    padding: 28px; /* 进一步减少内边距：从30px减至28px */
    border-radius: 20px; /* 略微减小圆角 */
    border: 1px solid rgba(15, 174, 150, 0.15);
}

/* 右侧标题：放大至1.3倍，建议20-22px */
.mission-panel h3 {
    color: var(--dark-color);
    font-size: 22px; /* 从22px保持22px（符合20-22px要求），但加粗增强视觉 */
    font-weight: 700; /* 加粗 */
    margin-bottom: 10px; /* 减少标题下方间距 */
    line-height: 1.3;
}

.mission-panel ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; /* 列表项间距进一步减少 */
}

/* 列表项文字：16px，确保与左侧正文视觉平衡 */
.mission-panel li {
    display: flex;
    align-items: flex-start; /* 改为顶部对齐，避免图标和文字不对齐 */
    gap: 10px; /* 图标与文字间距 */
    color: var(--text-color);
    font-size: 16px; /* 明确设置为16px */
    line-height: 1.65; /* 增加行高，提升可读性 */
}

/* 绿色勾选图标：适当放大，增强视觉存在感，与文字比例协调 */
.mission-panel li i {
    color: var(--primary-color);
    font-size: 17px; /* 从18px调整为17px，与16px文字更协调 */
    flex-shrink: 0; /* 防止图标被压缩 */
    margin-top: 2px; /* 微调垂直位置，与文字对齐 */
}

/* 响应式适配：小屏幕时保持可读性，确保文字不会超出容器 */
@media (max-width: 968px) {
    .mission-section .container {
        padding: 0 4%; /* 平板端进一步减少边距 */
    }
    
    .mission-grid {
        grid-template-columns: 1fr; /* 小屏幕时单列布局 */
        gap: 20px; /* 保持紧凑间距 */
    }
    
    .mission-text h2 {
        font-size: 48px; /* 平板端保持较大字体 */
        letter-spacing: 1.5px;
    }
    
    .mission-text p {
        font-size: 17px; /* 保持清晰可读 */
    }
    
    .mission-panel h3 {
        font-size: 21px;
    }
    
    .mission-panel {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .mission-text h2 {
        font-size: 40px; /* 中等屏幕时适当缩小 */
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 30px 0; /* 手机端进一步减少顶部留白 */
    }
    
    .mission-section .container {
        padding: 0 4%; /* 手机端保持紧凑边距 */
    }
    
    .mission-grid {
        gap: 18px; /* 手机端进一步减少间距 */
    }
    
    .mission-text h2 {
        font-size: 32px; /* 手机端字体仍保持醒目 */
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }
    
    .mission-text p {
        font-size: 16px; /* 手机端保持16px，符合要求 */
        margin-bottom: 6px; /* 进一步减少段落间距 */
        line-height: 1.7;
    }
    
    .mission-panel {
        padding: 22px; /* 手机端减少内边距 */
    }
    
    .mission-panel h3 {
        font-size: 20px; /* 手机端保持20px，符合要求 */
        margin-bottom: 8px;
    }
    
    .mission-panel ul {
        gap: 6px; /* 手机端列表项间距更紧凑 */
    }
    
    .mission-panel li {
        font-size: 15px; /* 手机端略微缩小但保持可读 */
        line-height: 1.6;
    }
    
    .mission-panel li i {
        font-size: 16px; /* 手机端图标相应缩小 */
    }
}

/* 象徵含義卡片 - 优化版：减少留白，增大字体，提升信息密度 */
.symbolic-section {
    background: var(--light-color);
    padding: 40px 0; /* 顶部留白缩减50%：从80px减至40px */
}

.symbol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 明确三列布局，各占33.33% */
    gap: 20px; /* 卡片间距缩减20%：从25px减至20px */
}

.symbol-card {
    background: var(--white-color);
    border-radius: 20px; /* 略微减小圆角 */
    padding: 28px 24px; /* 减少内边距：从30px减至28px，左右24px */
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.symbol-card:hover {
    transform: translateY(-8px); /* 悬停效果略微减小 */
    box-shadow: var(--shadow-hover);
}

/* 图标：适当放大，增强视觉存在感 */
.symbol-icon {
    font-size: 52px; /* 从42px放大至52px (约1.24倍) */
    margin-bottom: 12px; /* 减少图标下方间距：从15px减至12px */
    line-height: 1;
    display: block;
}

/* 标题：放大至1.3-1.5倍，加粗 */
.symbol-card h3 {
    font-size: 28px; /* 从20px放大至28px (1.4倍) */
    font-weight: 700; /* 加粗增强视觉重量 */
    color: var(--dark-color);
    margin-bottom: 10px; /* 减少标题下方间距：从12px减至10px */
    line-height: 1.3;
}

/* 正文：放大至1.2-1.3倍，建议16-18px */
.symbol-card p {
    font-size: 17px; /* 从15px放大至17px (约1.13倍，符合16-18px要求) */
    color: var(--text-color);
    line-height: 1.75; /* 增加行高，提升可读性 */
    margin: 0; /* 移除默认margin */
}

/* 响应式适配：小屏幕时保持可读性 */
@media (max-width: 968px) {
    .symbolic-section .container {
        padding: 0 4%; /* 平板端进一步减少边距 */
    }
    
    .symbol-grid {
        grid-template-columns: repeat(2, 1fr); /* 平板端两列布局 */
        gap: 18px;
    }
    
    .symbol-icon {
        font-size: 48px;
    }
    
    .symbol-card h3 {
        font-size: 24px;
    }
    
    .symbol-card p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .symbolic-section {
        padding: 30px 0; /* 手机端进一步减少顶部留白 */
    }
    
    .symbolic-section .container {
        padding: 0 4%;
    }
    
    .symbol-grid {
        grid-template-columns: 1fr; /* 手机端单列布局 */
        gap: 16px;
    }
    
    .symbol-card {
        padding: 24px 20px; /* 手机端进一步减少内边距 */
    }
    
    .symbol-icon {
        font-size: 44px;
        margin-bottom: 10px;
    }
    
    .symbol-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .symbol-card p {
        font-size: 15px;
    line-height: 1.7;
    }
}

/* 願景與行動方向 - 优化版：大幅减少留白，提升信息密度 */
.vision-section {
    padding: 25px 0; /* 进一步减少顶部留白：从40px减至25px */
    background: linear-gradient(135deg, #f7f9ff, #ecfffb);
}

.vision-wrapper {
    display: flex;
    flex-direction: column; /* 改为垂直布局 */
    align-items: center; /* 整体内容居中 */
    gap: 30px; /* 统一区域间距：30px */
    max-width: 1200px; /* 限制最大宽度 */
    margin: 0 auto; /* 水平居中 */
}

/* 左侧内容区域 - 优化布局和对齐，统一排版节奏 */
.vision-section .vision-content {
    padding: 16px 12px !important; /* 优化容器内边距：上下16px，左右12px */
    padding-right: 20px !important; /* 右侧内边距，与右侧卡片保持协调间距 */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 整体内容水平居中 */
    max-width: 100%;
    box-sizing: border-box;
    background: transparent !important; /* 移除philosophy-new.css中的背景 */
    border-radius: 0 !important; /* 移除philosophy-new.css中的圆角 */
    box-shadow: none !important; /* 移除philosophy-new.css中的阴影 */
    overflow: visible !important; /* 移除philosophy-new.css中的overflow */
}

/* 标题区域容器：用于让副标题和主标题作为一个整体居中，但内部左对齐 */
.vision-content .section-eyebrow,
.vision-content h2 {
    width: 100%;
    max-width: 100%;
}

/* 副标题：与主标题左对齐，位于主标题正上方 */
.vision-section .vision-content .section-eyebrow {
    font-size: 13px; /* 优化字体大小 */
    margin-bottom: 12px; /* 优化与主标题顶部距离：12px */
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: left; /* 左对齐 */
    align-self: flex-start; /* 在flex容器中左对齐 */
    width: 100%; /* 占据全宽，与主标题宽度一致 */
    font-weight: 500; /* 略微加粗，增强层级感 */
}

/* 主标题：水平居中，文字居中对齐，优化位置和间距 */
.vision-section .vision-content h2 {
    font-size: clamp(42px, 5.2vw, 66px); /* 适当增大字体，增强层级感 */
    font-weight: 800; /* 加粗增强视觉重量 */
    color: var(--dark-color);
    margin: 0 auto 18px auto; /* 优化底部间距：18px，让上下区域更紧凑但不拥挤 */
    letter-spacing: 1.5px; /* 增加字间距，提升阅读舒适度 */
    line-height: 1.2; /* 优化行高：1.2，让标题内部更协调 */
    text-align: center; /* 文字居中对齐 */
    width: auto; /* 宽度自适应内容，便于居中 */
    max-width: 100%; /* 确保不超出容器 */
    word-wrap: break-word; /* 确保长文本正确换行 */
    word-break: keep-all; /* 避免单字换行，保持词语完整 */
    align-self: center; /* 在flex容器中居中 */
}

/* 正文容器：两段文字并排显示，顶部对齐，优化排版 */
.vision-section .vision-content .vision-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 两列等宽 */
    gap: 16px; /* 优化左右段落间距：16px，让排版更规整 */
    width: 100%;
    max-width: 100%;
    align-items: start; /* 顶部对齐，确保两段文字第一行在同一水平线 */
    margin-top: 0; /* 与主标题的间距已由h2的margin-bottom控制 */
    box-sizing: border-box;
}

/* 正文段落：优化字体层级，与标题形成清晰区分 */
.vision-section .vision-content .vision-text-wrapper p {
    color: var(--text-color);
    line-height: 1.65; /* 优化行间距：1.65，保持清晰易读 */
    font-size: 16px; /* 字体大小：16px，与标题形成清晰的层级区分 */
    margin: 0; /* 移除默认margin */
    width: 100%;
    max-width: 100%;
    text-align: left; /* 左对齐 */
    font-weight: 400; /* 正常字重，与标题的800形成对比 */
    letter-spacing: 0.3px; /* 略微增加字间距，提升可读性 */
}

/* 右侧行动卡片网格 - 居中排版，单列布局 */
.vision-actions {
    display: grid;
    grid-template-columns: 1fr; /* 改为单列布局，垂直堆叠 */
    gap: 14px; /* 统一卡片间距：14px */
    align-items: stretch; /* 拉伸对齐，确保所有卡片高度一致 */
    max-width: 500px; /* 限制最大宽度，让卡片不会太宽 */
    margin: 0 auto; /* 水平居中 */
    width: 100%; /* 占据可用宽度 */
}

/* 行动卡片：统一内边距，居中对齐，优化排版 */
.vision-card {
    background: var(--white-color);
    padding: 24px 20px; /* 统一内边距：上下24px，左右20px，让间距更均匀 */
    border-radius: 16px; /* 圆角 */
    border: 1px solid rgba(15, 174, 150, 0.15);
    box-shadow: 0 6px 20px rgba(15, 174, 150, 0.08);
    transition: var(--transition);
    height: 100%; /* 确保卡片高度一致 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平居中对齐 */
    justify-content: center; /* 垂直居中对齐 */
    text-align: center; /* 文字居中对齐 */
}

.vision-card:hover {
    transform: translateY(-3px); /* 添加悬停效果 */
    box-shadow: 0 12px 35px rgba(15, 174, 150, 0.12);
}

/* 卡片标题：强化字体层级，居中对齐，统一间距 */
.vision-card h3 {
    font-size: 21px; /* 增大字体：21px，强化层级感 */
    font-weight: 800; /* 更粗的字重：800，增强视觉重量 */
    color: var(--dark-color);
    margin: 0 0 12px 0; /* 统一标题下方间距：12px，上下边距均匀 */
    line-height: 1.3; /* 优化行高：1.3 */
    flex-shrink: 0; /* 防止标题被压缩 */
    text-align: center; /* 标题居中对齐 */
    width: 100%; /* 占据全宽，确保居中 */
}

/* 卡片正文：优化字体层级，居中对齐，统一间距 */
.vision-card p {
    font-size: 14px; /* 减小字体：14px，与标题形成更清晰的层级对比 */
    color: var(--text-color);
    line-height: 1.65; /* 优化行高：1.65，保持清晰易读 */
    margin: 0; /* 统一边距：0，让间距由卡片padding控制 */
    flex-grow: 1; /* 让正文占据剩余空间 */
    text-align: center; /* 正文居中对齐 */
    width: 100%; /* 占据全宽，确保居中 */
    font-weight: 400; /* 正常字重，与标题的800形成对比 */
}

/* 响应式适配：小屏幕时保持可读性 */
@media (max-width: 968px) {
    .vision-section .container {
        padding: 0 4%; /* 平板端进一步减少边距 */
    }
    
    .vision-wrapper {
        flex-direction: column; /* 保持垂直布局 */
        gap: 25px; /* 平板端间距 */
        align-items: center; /* 居中 */
    }
    
    .vision-content {
        padding: 10px 8px; /* 平板端进一步减少内边距 */
        padding-right: 12px; /* 移除右侧额外内边距 */
    }
    
    .vision-content .section-eyebrow {
        margin-bottom: 8px; /* 减少间距 */
    }
    
    .vision-content h2 {
        font-size: 38px; /* 平板端字体 */
        letter-spacing: 1px;
        margin-bottom: 12px; /* 减少与正文的间距 */
        line-height: 1.1;
    }
    
    .vision-content .vision-text-wrapper {
        grid-template-columns: 1fr 1fr; /* 平板端保持两列 */
        gap: 12px; /* 减少间距 */
    }
    
    .vision-content .vision-text-wrapper p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .vision-actions {
        grid-template-columns: 1fr; /* 平板端单列布局 */
        gap: 12px; /* 平板端统一间距 */
        max-width: 100%; /* 平板端占据全宽 */
    }
    
    .vision-card {
        padding: 20px 16px; /* 平板端统一内边距 */
        align-items: center; /* 居中对齐 */
        justify-content: center; /* 垂直居中 */
        text-align: center; /* 文字居中 */
    }
    
    .vision-card h3 {
        font-size: 19px; /* 平板端标题字体 */
        margin-bottom: 10px; /* 统一间距 */
        text-align: center; /* 居中对齐 */
    }
    
    .vision-card p {
        font-size: 13px; /* 平板端正文字体 */
        line-height: 1.6;
        text-align: center; /* 居中对齐 */
    }
    
    .vision-card {
        padding: 18px 16px;
    }
    
    .vision-card h3 {
        font-size: 19px;
    }
    
    .vision-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .vision-section {
        padding: 20px 0; /* 手机端进一步减少顶部留白：从30px减至20px */
    }
    
    .vision-section .container {
        padding: 0 4%;
    }
    
    .vision-wrapper {
        flex-direction: column; /* 保持垂直布局 */
        gap: 20px; /* 手机端间距 */
        align-items: center; /* 居中 */
    }
    
    .vision-content {
        padding: 10px 8px; /* 手机端进一步减少内边距 */
    }
    
    .vision-content .section-eyebrow {
        margin-bottom: 8px; /* 手机端减少间距 */
        font-size: 11px;
    }
    
    .vision-content h2 {
        font-size: 28px; /* 手机端字体 */
        letter-spacing: 0.5px;
        margin-bottom: 12px; /* 手机端减少与正文间距 */
        line-height: 1.1;
    }
    
    .vision-content .vision-text-wrapper {
        grid-template-columns: 1fr; /* 手机端单列布局 */
        gap: 10px; /* 减少间距 */
    }
    
    .vision-content .vision-text-wrapper p {
        font-size: 14px; /* 手机端字体 */
        line-height: 1.5;
    }
    
    .vision-actions {
        grid-template-columns: 1fr; /* 手机端单列布局 */
        gap: 12px; /* 手机端统一间距 */
    }
    
    .vision-card {
        padding: 20px 16px; /* 手机端统一内边距 */
        align-items: center; /* 居中对齐 */
        justify-content: center; /* 垂直居中 */
        text-align: center; /* 文字居中 */
    }
    
    .vision-card h3 {
        font-size: 18px; /* 手机端标题字体 */
        margin-bottom: 10px; /* 统一间距 */
        line-height: 1.3;
        text-align: center; /* 居中对齐 */
    }
    
    .vision-card p {
        font-size: 13px; /* 手机端正文字体 */
        line-height: 1.6;
        text-align: center; /* 居中对齐 */
    }
}

/* 光能同行 */
.campaign-section {
    padding: 80px 0;
    background: var(--white-color);
}

.campaign-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    align-items: center;
}

.campaign-text h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 18px;
}

.campaign-text p {
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 12px;
}

.cta-card {
    background: linear-gradient(135deg, #0fae96, #0f766e);
    color: var(--white-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-card span {
    letter-spacing: 0.2em;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.8;
}

.cta-card strong {
    display: block;
    font-size: 32px;
    margin: 12px 0 25px;
}
/* 理念區塊 */
.philosophy {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,152,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.philosophy::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.philosophy-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.philosophy-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: 30px auto;
    animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.philosophy-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.philosophy-card:hover::before {
    left: 100%;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.philosophy-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.5s;
}

.philosophy-card:hover .philosophy-card-image {
    transform: scale(1.05);
}

.philosophy-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.8;
}

.philosophy-plus {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: bold;
}

/* 四大方向 */
.directions {
    padding: 100px 0;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.direction-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.direction-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(255,152,0,0.05), transparent);
    transition: height 0.4s;
}

.direction-card:hover::after {
    height: 100%;
}

.direction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--secondary-color);
}

.direction-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.5s;
}

.direction-card:hover .direction-card-image {
    transform: scale(1.08) rotate(2deg);
}

.direction-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.direction-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

/* 專案區塊 */
.projects {
    padding: 100px 0;
    background: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,152,0,0.1) 0%, rgba(102,126,234,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: relative;
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.project-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-progress {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-color);
}

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

.project-goal {
    font-size: 14px;
    color: var(--text-color);
}

.project-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.project-btn:hover {
    background: var(--accent-color);
}

/* 影響力統計 */
.impact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.impact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.impact-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    cursor: pointer;
}

.impact-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.2);
}

.impact-number {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: countUp 1s ease-out;
}

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

.impact-label {
    font-size: 18px;
    opacity: 0.95;
}

/* 媒體報導 */
.news {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.news-card::after {
    content: '閱讀更多 →';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
}

.news-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

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

.news-card:hover .news-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
    margin-bottom: 0; /* 确保图片与文字间距统一 */
}

.news-content {
    padding: 20px 25px 25px 25px; /* 统一内边距：上20px（图片与文字间距），左右25px，下25px */
}

.news-date {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px; /* 统一日期与标题间距：12px */
    font-weight: 500; /* 略微加粗 */
}

.news-title {
    font-size: 22px; /* 增大标题字体：从20px增至22px */
    color: var(--dark-color);
    margin-bottom: 12px; /* 统一标题与正文间距：12px */
    font-weight: 700; /* 加粗：从bold改为700，增强层级感 */
    line-height: 1.4; /* 优化行高 */
}

.news-excerpt {
    font-size: 15px; /* 保持正文字体大小一致 */
    line-height: 1.75; /* 统一行高：从1.8调整为1.75，让间距更协调 */
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0; /* 确保没有额外边距 */
}

/* 見證區塊 */
.testimonials {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
    text-align: right;
}

/* 聯絡我們 */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* 頁腳 - 增大字体，缩小间距，让整体更紧凑 */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 50px 0 25px; /* 增大上下内边距，让布局更大气 */
}

.footer .container {
    padding: 0 20px; /* 减小左右内边距，让内容更聚拢 */
    max-width: 1200px; /* 限制最大宽度 */
    margin: 0 auto; /* 容器居中 */
}

.footer-content {
    display: grid; /* 使用grid布局 */
    grid-template-columns: repeat(2, 1fr); /* 两列并排 */
    gap: 40px 60px; /* 行间距40px，列间距60px */
    margin-bottom: 30px; /* 底部间距 */
    max-width: 900px; /* 限制内容最大宽度 */
    margin-left: auto; /* 左自动边距 */
    margin-right: auto; /* 右自动边距 */
}

.footer-section {
    text-align: center; /* 每个section内容居中 */
    width: 100%; /* 确保宽度填满 */
}

.footer-section h3,
.footer-section h4 {
    font-size: 26px; /* 统一标题字体大小 */
    margin-bottom: 14px; /* 统一标题与下方文字间距 */
    color: var(--secondary-color);
    line-height: 1.25;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section ul li a,
.footer-motto {
    font-size: 17px; /* 统一正文/链接字体大小 */
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

.footer-motto {
    margin-top: 8px;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    text-align: center;
}

.footer-section ul li a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 10px;
}

.footer-bottom p {
    font-size: 15px; /* 版权文字略小，形成层级 */
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* 回到頂部按鈕 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* 工具類 */
.text-center {
    text-align: center;
}

/* 響應式設計 */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white-color);
        flex-direction: column;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-message h1 {
        font-size: 38px;
    }

    .mission-text h2,
    .campaign-text h2 {
        font-size: 28px;
    }
    
    /* 愿景区域样式已在上面专门的@media (max-width: 968px)中处理 */
    
    /* 輪播圖樣式由 slider.css 控制 */
    
    .section-title {
        font-size: 32px;
    }
    
    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .philosophy-plus {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    /* 容器紧凑化 */
    .container {
        padding: 0 15px;
    }

    .hero-splash {
        padding: 110px 0 60px;
    }

    .hero-message h1 {
        font-size: 30px;
    }

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

    .mission-grid,
    .campaign-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* 愿景区域优化已在上面专门的@media (max-width: 576px)中处理，这里不再重复 */
    
    /* 区块间距紧凑 */
    section {
        padding: 40px 0;
    }
    
    /* 标题紧凑 */
    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    /* 导航栏紧凑 */
    .navbar {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 12px 0;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 20px;
    }
    
    /* 理念卡片紧凑 */
    .philosophy {
        padding: 40px 0;
    }
    
    .philosophy-card {
        padding: 25px 18px;
        margin-bottom: 20px;
    }
    
    .philosophy-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .philosophy-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .philosophy-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    /* 方向卡片紧凑 */
    .direction-card {
        padding: 25px 18px;
    }
    
    .direction-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .direction-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .direction-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    /* 项目卡片紧凑 */
    .project-card,
    .news-card {
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 20px 15px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .card-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* 见证卡片紧凑 */
    .testimonial-card {
        padding: 25px 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        font-size: 15px;
    }
    
    /* 影响力数字紧凑 */
    .impact-item {
        padding: 25px 15px;
    }
    
    .impact-number {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .impact-label {
        font-size: 13px;
    }
    
    /* 按钮紧凑 */
    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    /* 联系表单紧凑 */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* 页脚2x2布局 - 移动端也保持两列并排 */
    .footer {
        padding: 35px 0 18px; /* 移动端适当减少内边距 */
    }
    
    .footer .container {
        padding: 0 15px; /* 移动端减少左右内边距 */
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr); /* 移动端保持两列并排 */
        gap: 25px 20px; /* 移动端减少间距：行间距25px，列间距20px */
        margin-bottom: 20px;
        max-width: 100%; /* 移动端使用全宽 */
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 20px; /* 移动端统一标题字体 */
        margin-bottom: 10px;
        line-height: 1.25;
        letter-spacing: 0.3px;
    }
    
    .footer-section p,
    .footer-section ul li a,
    .footer-motto {
        font-size: 14px; /* 移动端统一正文/链接字体 */
        line-height: 1.6;
    }
    
    .footer-section ul li {
        margin-bottom: 6px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        margin-top: 5px;
    }
    
    .footer-bottom p {
        font-size: 13px; /* 移动端版权文字略小 */
        line-height: 1.5;
    }
}

/* ========== 客服悬浮按钮 ========== */
.service-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(15, 174, 150, 0.45);
    z-index: 999;
    transition: all 0.3s ease;
    animation: service-pulse 2s ease-in-out infinite;
    text-decoration: none;
}

.service-float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(15, 174, 150, 0.55);
    color: white;
}

.service-float-btn::after {
    content: '客服';
    position: absolute;
    bottom: -25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

@keyframes service-pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(15, 174, 150, 0.45); }
    50% { box-shadow: 0 8px 35px rgba(15, 174, 150, 0.65), 0 0 20px rgba(15, 174, 150, 0.3); }
}

@media (max-width: 768px) {
    .service-float-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .service-float-btn::after {
        display: none;
    }
}
