/* ============================================================
   COSMO 官方首页视觉优化样式表 (home-enhance.css)
   原则：严格保持原有 DOM 结构与排版网格，大幅提升质感、对比度、微交互与专业科技感
   ============================================================ */

/* ------------------------------------------------------------
   1. 全局字体与平滑渲染
   ------------------------------------------------------------ */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #334155;
}

/* 统一章节标题微调 */
.section-heading .section-title {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-heading .section-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-top: 8px;
    font-weight: 400;
}

.section-heading .line-solid-main-color {
    background: linear-gradient(90deg, #08adef 0%, #0284c7 100%) !important;
    height: 3px !important;
    border-radius: 3px;
    width: 56px;
    margin: 16px auto 32px;
}

/* 统一通用主按钮质感 */
.ma-btn-primary {
    background: linear-gradient(135deg, #08adef 0%, #0284c7 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(8, 173, 239, 0.32);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ma-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 173, 239, 0.48);
    color: #ffffff !important;
}

/* ------------------------------------------------------------
   2. 头部导航栏 (Page Header & Main Navbar)
   ------------------------------------------------------------ */
.page-header {
    transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* 滚动吸顶时的半透明科技深蓝毛玻璃背景（替换原先刺眼的纯高亮蓝） */
.header-stand-out {
    background: rgba(10, 24, 46, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16) !important;
}

.main-navbar .nav-link {
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.02em;
    padding: 10px 14px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.header-stand-out .nav-link {
    color: #e2e8f0 !important;
}

.header-stand-out .nav-link:hover,
.header-stand-out .nav-link.active {
    color: #38bdf8 !important;
}

/* 头部“联系客服”高光按钮 */
.header-cta {
    background: linear-gradient(135deg, #08adef 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 9px 22px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(8, 173, 239, 0.38) !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 173, 239, 0.55) !important;
    color: #ffffff !important;
}

/* 汉堡按钮微调 */
.menu-toggler-btn span {
    background-color: #ffffff !important;
    border-radius: 2px;
}

/* ------------------------------------------------------------
   3. 首页 Hero 首屏滑块 (Vegas Slider)
   ------------------------------------------------------------ */
.hero-vegas-slider .overlay-color {
    background: linear-gradient(135deg, rgba(8, 24, 46, 0.78) 0%, rgba(9, 44, 82, 0.65) 55%, rgba(10, 30, 58, 0.82) 100%) !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

.hero-vegas-slider .vegas-slider-content {
    z-index: 2 !important;
}

.hero-text-area .hero-title {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 900;
    color: #ffffff !important;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.hero-text-area .hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92) !important;
    letter-spacing: 0.08em;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    font-weight: 500;
    max-width: 780px;
    margin: 0 auto 32px;
}

/* 首屏按钮组 */
.hero-text-area .cta-links-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-text-area .cta-links-area .cta-link {
    border-radius: 999px !important;
    padding: 13px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-text-area .cta-links-area .cta-link-primary {
    background: linear-gradient(135deg, #08adef 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(8, 173, 239, 0.45) !important;
}

.hero-text-area .cta-links-area .cta-link-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(8, 173, 239, 0.6) !important;
}

.hero-text-area .cta-links-area .cta-link:not(.cta-link-primary) {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-text-area .cta-links-area .cta-link:not(.cta-link-primary):hover {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.3) !important;
}

/* ------------------------------------------------------------
   4. 关于我们模块 (About Section)
   ------------------------------------------------------------ */
.about.mega-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.about .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    border: 1px solid #bae6fd;
}

.about .about-title {
    font-size: clamp(1.75rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 26px;
}

/* 3大优势卡片微调：升级为整齐的微卡片 */
.about .info-items .menu-items {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.about .info-items .menu-items .info-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about .info-items .menu-items .info-item:hover {
    transform: translateX(6px);
    border-color: #7dd3fc;
    box-shadow: 0 8px 24px rgba(8, 173, 239, 0.09);
}

.about .info-items .menu-items .info-item .info-img-icon {
    width: 48px;
    height: 48px;
    padding: 8px;
    background: #f0f9ff;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    border: 1px solid #e0f2fe;
    transition: transform 0.3s ease;
}

.about .info-items .menu-items .info-item:hover .info-img-icon {
    transform: scale(1.08);
}

.about .info-items .menu-items .info-item .info-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.about .info-items .menu-items .info-item .info-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* 视频封面与播放按钮 */
.about .video-thumbnail {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.15);
    border: 5px solid #ffffff;
    position: relative;
    background: #0f172a;
}

.about .video-thumbnail .about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about .video-thumbnail:hover .about-img {
    transform: scale(1.03);
}

.about .video-play-btn {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #08adef, #0284c7);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(8, 173, 239, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cosmoPulse 2s infinite;
}

.about .video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 14px 32px rgba(8, 173, 239, 0.7);
}

@keyframes cosmoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 173, 239, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(8, 173, 239, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 173, 239, 0);
    }
}

/* ------------------------------------------------------------
   5. 产品画册模块 (Portfolio Section)
   ------------------------------------------------------------ */
.portfolio.section-bg-shade {
    background: #f8fafc;
}

/* 分类筛选标签 Pills */
.portfolio .portfolio-btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 34px;
    list-style: none;
    padding: 0;
}

.portfolio .portfolio-btn-list .portfolio-btn {
    padding: 8px 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.portfolio .portfolio-btn-list .portfolio-btn:hover,
.portfolio .portfolio-btn-list .portfolio-btn.active {
    background: #08adef !important;
    border-color: #08adef !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(8, 173, 239, 0.35);
    transform: translateY(-1px);
}

/* 产品卡片精致化（修复原本隐藏文字的问题，保持排版完全不动） */
.portfolio .portfolio-group .portfolio-item {
    padding: 10px;
}

.portfolio .portfolio-group .item {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.portfolio .portfolio-group .item:hover {
    transform: translateY(-6px);
    border-color: #7dd3fc;
    box-shadow: 0 16px 36px rgba(8, 173, 239, 0.14);
}

.portfolio .item .portfolio-img-link {
    background: #ffffff;
    padding: 24px 20px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.portfolio .item .portfolio-img-link .portfolio-img {
    max-height: 175px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.portfolio .item:hover .portfolio-img-link .portfolio-img {
    transform: scale(1.08);
}

.portfolio .item .portfolio-img-link .overlay-color {
    background: rgba(8, 173, 239, 0.12) !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio .item:hover .portfolio-img-link .overlay-color {
    opacity: 1 !important;
}

.portfolio .item .portfolio-img-link .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio .item:hover .portfolio-img-link .icon {
    opacity: 1;
}

/* 产品名称与分类默认常显且清晰美观 */
.portfolio .item .item-info {
    position: static !important;
    opacity: 1 !important;
    bottom: auto !important;
    left: auto !important;
    padding: 16px 20px !important;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.portfolio .item .item-info .info-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.portfolio .item .item-info .tags-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio .item .item-info .tag-item .tag-link {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.portfolio .item .item-info .tag-item .tag-link:hover {
    background: #08adef;
    color: #ffffff;
}

/* ------------------------------------------------------------
   6. 客户案例模块 (Our Team Section -> Cases)
   ------------------------------------------------------------ */
.our-team.mega-section {
    background: #ffffff;
}

.our-team .tm-member-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.our-team .tm-member-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.our-team .tm-member-card .tm-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.our-team .tm-member-card .tm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our-team .tm-member-card:hover .tm-image img {
    transform: scale(1.06);
}

.our-team .tm-member-card .tm-image .overlay-color {
    background: rgba(15, 23, 42, 0.18) !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.our-team .tm-member-card:hover .tm-image .overlay-color {
    opacity: 1 !important;
}

.our-team .tm-member-card .tm-details {
    padding: 22px 24px !important;
    text-align: left !important;
    background: #ffffff !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.our-team .tm-member-card .tm-details .tm-name {
    font-size: 17.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.our-team .tm-member-card .tm-details .tm-role {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ------------------------------------------------------------
   7. 合作伙伴模块 (Our Clients Section)
   ------------------------------------------------------------ */
.our-clients.elf-section {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 3.5rem 0 !important;
}

.our-clients .client-logo {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
    margin: 4px;
}

.our-clients .client-logo:hover {
    border-color: #bae6fd;
    box-shadow: 0 8px 20px rgba(8, 173, 239, 0.1);
    transform: translateY(-2px);
}

.our-clients .client-logo img.logo {
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.78;
    transition: all 0.3s ease;
}

.our-clients .client-logo:hover img.logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ------------------------------------------------------------
   8. 最新资讯模块 (Blog Section)
   ------------------------------------------------------------ */
.blog.blog-home.mega-section {
    background: #ffffff;
}

.blog .posts-grid .post-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
    height: calc(100% - 24px);
}

.blog .posts-grid .post-box:hover {
    transform: translateY(-6px);
    border-color: #7dd3fc;
    box-shadow: 0 16px 36px rgba(8, 173, 239, 0.12);
}

.blog .posts-grid .post-img-wraper {
    height: 210px;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    border-radius: 0 !important;
    background: #f1f5f9;
}

.blog .posts-grid .post-img-wraper .post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog .posts-grid .post-box:hover .post-img-wraper .post-img {
    transform: scale(1.06);
}

.blog .posts-grid .post-summary {
    padding: 22px 24px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog .posts-grid .post-summary .post-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.blog .posts-grid .post-summary .post-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog .posts-grid .post-summary .post-cat:hover {
    background: #08adef;
    color: #ffffff;
}

.blog .posts-grid .post-summary .post-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-size: 12.5px;
}

.blog .posts-grid .post-text .post-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog .posts-grid .post-text .post-link:hover .post-title {
    color: #08adef;
}

.blog .posts-grid .post-text .post-excerpt {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog .posts-grid .post-text .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #08adef;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog .posts-grid .post-text .read-more:hover {
    gap: 10px;
    color: #0284c7;
}

/* ------------------------------------------------------------
   9. 底部快捷服务支持模块 (.con-support-menu)
   ------------------------------------------------------------ */
.con-support-menu {
    background: linear-gradient(135deg, rgba(8, 26, 52, 0.94) 0%, rgba(9, 58, 102, 0.9) 100%),
                url(../../assets/images/hero/hero-slider-bg-img-1.jpg) center/cover no-repeat !important;
    padding: 5.5rem 0 !important;
    position: relative;
    color: #ffffff;
}

.con-support-menu .con-mask {
    background: transparent !important;
}

.con-support-menu .section-title {
    color: #ffffff !important;
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.con-support-menu p.fadeInUp {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 36px;
}

.con-support-menu .con-support-items {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
    max-width: 1180px;
    margin: 0 auto !important;
    padding: 0 15px;
}

.con-support-menu .con-support-items .con-support-item {
    flex: 1 1 180px !important;
    max-width: 210px !important;
    min-width: 160px !important;
    min-height: 180px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    padding: 28px 16px 22px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.con-support-menu .con-support-items .con-support-item:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32) !important;
}

.con-support-menu .con-support-items .con-support-item img {
    width: 52px !important;
    height: 52px !important;
    margin: 0 auto 16px !important;
    display: block !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)) !important;
    transition: transform 0.3s ease !important;
}

.con-support-menu .con-support-items .con-support-item:hover img {
    transform: scale(1.12) !important;
}

.con-support-menu .con-support-items .con-support-item p {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    width: auto !important;
    padding: 0 !important;
    text-align: center !important;
    letter-spacing: 0.04em !important;
}

/* ------------------------------------------------------------
   10. 页脚细节优化 (Footer Refinement)
   ------------------------------------------------------------ */
.page-footer.dark-color-footer {
    background: #0b1526 !important;
    border-top: 1px solid #1e293b;
}

.footer-col-title {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #08adef;
    border-radius: 2px;
}

.footer-text-about-us {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 13.5px;
}

.footer-menu-item .footer-menu-link {
    color: #94a3b8;
    font-size: 13.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-menu-item .footer-menu-link:hover {
    color: #38bdf8 !important;
    padding-left: 4px;
}

/* ------------------------------------------------------------
   11. 移动端与平板响应式适配
   ------------------------------------------------------------ */
@media (max-width: 991px) {
    .con-support-menu .con-support-items .con-support-item {
        flex: 1 1 calc(50% - 16px) !important;
        max-width: 100% !important;
        min-height: 150px !important;
    }

    .about .about-title {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .con-support-menu .con-support-items .con-support-item {
        flex: 1 1 100% !important;
        min-height: 120px !important;
        padding: 20px 16px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 16px;
    }

    .con-support-menu .con-support-items .con-support-item img {
        margin: 0 !important;
        width: 40px !important;
        height: 40px !important;
    }

    .hero-text-area .cta-links-area {
        flex-direction: column;
        width: 100%;
    }

    .hero-text-area .cta-links-area .cta-link {
        width: 100%;
        margin-left: 0 !important;
    }
}
