/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* 头部导航 */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1100;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo-link {
    display: block;
}

.logo-img {
    width: 168px;
    height: auto;
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav li {
    margin-left: 24px;
    position: relative;
}

.nav a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header.scrolled .nav a,
.header.scrolled .nav a.active,
.header.scrolled .nav a:hover {
    color: #333 !important;
}

.nav a:hover,
.nav a.active {
    background: rgba(30,107,214,0.1);
    color: #1e6bd6 !important;
}


/* 下拉菜单 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid #eee;
    flex: 0 0 auto;
}

.dropdown-menu li a {
    color: #111 !important;
    padding: 12px 16px;
    display: block;
    text-align: left;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #1e6bd6 !important;
}

/* 增加滚动观感 */
.page-banner {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px;
}

.page-banner-overlay {
    background: rgba(0,0,0,0.28);
    height: 100%;
    display: flex;
    align-items: center;
}

.page-banner-overlay .container {
    max-width: 1200px;
    text-align: center;
}

.page-banner h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 12px;
    text-align: center;
}

.page-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    text-align: center;
}

.main-content {
    min-height: calc(100vh - 180px);
    padding-top: 40px;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

/* 轮播图 */
.banner {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    background: transparent;
    padding: 40px;
    border-radius: 10px;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 主要内容 */
.main-content {
    min-height: calc(100vh - 200px);
}

/* 普通链接样式 */
a, a:link, a:visited {
    color: #1e6bd6;
    text-decoration: underline;
}

a:hover, a:focus {
    color: #0b4da2;
    text-decoration: none;
}

/* 卡片样式 */
.card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-header {
    background: linear-gradient(135deg, #1e6bd6 0%, #0b4da2 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.card-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-header p {
    font-size: 16px;
    opacity: 0.9;
}

.card-body {
    padding: 30px;
}

/* 服务卡片 */
.service-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #1e6bd6;
    box-shadow: 0 4px 15px rgba(30,107,214,0.1);
}

.service-card i {
    font-size: 48px;
    color: #1e6bd6;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* 新闻列表 */
.news-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.news-item:hover {
    background: #f8f9fa;
}

.news-item:last-child {
    border-bottom: none;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.news-content h3 a {
    color: inherit;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #1e6bd6;
}

.news-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-summary {
    color: #666;
    line-height: 1.6;
}

.news-image {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-left: 20px;
}

/* 下载列表 */
.download-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.download-item:hover {
    border-color: #1e6bd6;
    box-shadow: 0 2px 10px rgba(30,107,214,0.1);
}

.download-item i {
    font-size: 24px;
    color: #fff;
    margin-right: 15px;
}

.download-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.download-info p {
    color: #666;
    font-size: 14px;
}

.download-link {
    margin-left: auto;
    padding: 8px 16px;
    background: #1e6bd6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.download-link:hover {
    background: #0b4da2;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e6bd6;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.service-multi-select {
    min-height: 150px;
}

.form-hint {
    color: #6b7280;
    font-size: 12px;
    margin-top: 6px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #1e6bd6;
    color: #fff !important;
    text-decoration: none !important;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0b4da2;
    color: #fff !important;
}

.btn-primary {
    background: #1e6bd6;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none !important;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0b4da2;
    color: #fff !important;
}

.download-link {
    background: #1e6bd6 !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.download-link:hover {
    background: #0b4da2 !important;
    color: #fff !important;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e6bd6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #bdc3c7;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #1e6bd6;
}

.qr-code {
    text-align: left;
}

.qr-code img {
    display: block;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 12px;
    color: #95a5a6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom a {
    color: #1e6bd6;
    text-decoration: none;
}

/* 新闻分类 */
.news-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: flex-start;
}

.category-link {
    color: #1e6bd6;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid rgba(30,107,214,0.3);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background: rgba(30,107,214,0.93);
    color: #fff;
    border-color: #1e6bd6;
}

/* 统计数据 */
.stats {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1e6bd6;
    margin: 15px 0;
}

.stat-card p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* ================================================
   加入我们 (Join Page)
   ================================================ */
.join-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.join-intro {
    max-width: 700px;
    margin: 16px auto 0;
    color: #526074;
    line-height: 1.8;
}

/* 主区 */
.join-main-section {
    padding: 0 0 60px;
}

/* 筛选栏 */
.join-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.join-tabs {
    display: flex;
    gap: 4px;
    border: 1px solid #dbe2ef;
    border-radius: 8px;
    padding: 4px;
    background: #f5f8ff;
}

.tab-link {
    padding: 8px 20px;
    color: #526074;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.tab-link:hover {
    color: #1e6bd6;
    background: rgba(30,107,214,0.07);
}

.tab-link.active {
    background: #1e6bd6;
    color: #fff;
}

.join-search-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 340px;
}

.join-search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #dbe2ef;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}

.join-search-form input:focus {
    border-color: #1e6bd6;
}

.join-search-form button {
    padding: 10px 18px;
    background: #1e6bd6;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
}

.join-search-form button:hover {
    background: #155ab5;
}

/* 职位列表 */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #dbe2ef;
    border-radius: 10px;
    overflow: hidden;
}

.job-item {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.job-item:last-child {
    border-bottom: 0;
}

/* 可点击的行 */
.job-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.job-row:hover {
    background: #f5f9ff;
}

.job-item.open > .job-row {
    background: #eaf2ff;
}

.job-row-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.job-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a2340;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-type-badge {
    white-space: nowrap;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-type-badge.social {
    background: #e3f2fd;
    color: #1565c0;
}

.job-type-badge.campus {
    background: #f3e5f5;
    color: #6a1b9a;
}

.job-row-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #6b7280;
    font-size: 13px;
    flex-shrink: 0;
}

.job-row-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-salary {
    color: #dc6200;
    font-weight: 600;
}

.job-row-arrow {
    color: #9ca3af;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.job-item.open .job-row-arrow {
    transform: rotate(180deg);
    color: #1e6bd6;
}

/* 展开详情面板 */
.job-detail-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.job-item.open .job-detail-panel {
    max-height: 800px;
}

.job-detail-inner {
    padding: 24px;
    border-top: 1px solid #dbe2ef;
    background: #fbfcff;
}

.job-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.job-detail-block h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e6bd6;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-detail-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
}

.job-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.job-post-date {
    color: #9ca3af;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-apply {
    padding: 10px 30px;
    background: #1e6bd6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-apply:hover {
    background: #155ab5;
    transform: translateY(-1px);
}

/* 空状态 */
.no-jobs {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.no-jobs i {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

/* 岗位方向区 */
.job-categories-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.job-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.job-category-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e6ecf7;
    padding: 20px;
    transition: box-shadow 0.2s;
}

.job-category-card:hover {
    box-shadow: 0 4px 16px rgba(30,107,214,0.1);
}

.job-category-card h4 {
    color: #1e6bd6;
    margin-bottom: 8px;
    font-size: 16px;
}

.job-category-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ---- 弹窗头 ---- */
.apply-modal-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.apply-modal-head h3 {
    margin: 0 0 4px;
    font-size: 20px;
    color: #1a2340;
}

.apply-modal-subtitle {
    margin: 0;
    color: #1e6bd6;
    font-size: 14px;
    font-weight: 600;
}

/* ---- select 样式 ---- */
.apply-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dbe2ef;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    appearance: auto;
}

/* ---- label em 星号 ---- */
.apply-form label em,
.contact-form label em {
    color: #e53e3e;
    font-style: normal;
    margin-left: 2px;
}

/* ---- 简历上传区 ---- */
.resume-upload-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px;
    border: 2px dashed #c5d3e8;
    border-radius: 8px;
    background: #f9fbff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}

.resume-upload-zone:hover,
.resume-upload-zone.dragover {
    border-color: #1e6bd6;
    background: #eaf2ff;
}

.resume-upload-zone i {
    font-size: 28px;
    color: #1e6bd6;
}

.resume-upload-zone span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.resume-upload-zone small {
    color: #9ca3af !important;
    font-size: 12px;
}

.resume-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* ---- 提交按钮 ---- */
.btn-submit-apply {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #1e6bd6, #0e4daa);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-submit-apply:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* captcha */

/* 关于我们导航 */
.about-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: flex-start;
}

.nav-link {
    color: #1e6bd6;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(30,107,214,0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(30,107,214,0.93);
    color: #fff;
    border-color: #1e6bd6;
}

/* 团队介绍 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.member-avatar {
    font-size: 60px;
    color: #1e6bd6;
    margin-bottom: 15px;
}

.team-member h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.team-member p {
    color: #666;
    margin: 5px 0;
    font-size: 14px;
}

/* 联系信息 */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 24px;
    color: #1e6bd6;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* 科研服务页面 */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-category-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-category-overview-card {
    display: block;
    padding: 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid rgba(30, 107, 214, 0.1);
    box-shadow: 0 8px 24px rgba(30, 107, 214, 0.08);
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(30, 107, 214, 0.12);
}

.service-category-overview-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #1e6bd6;
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
}

.service-category-overview-card h3 {
    color: #1b2a3a;
    margin-bottom: 10px;
    font-size: 20px;
}

.service-category-overview-card p {
    color: #546272;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-category-overview-card span {
    color: #0b4da2;
    font-size: 13px;
    font-weight: 700;
}

.service-category-group {
    margin-bottom: 48px;
}

.service-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
}

.service-category-header h3 {
    font-size: 30px;
    color: #1b2a3a;
    margin-bottom: 10px;
}

.service-category-header p {
    max-width: 760px;
    margin: 0;
    color: #546272;
    line-height: 1.8;
}

.service-category-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(30, 107, 214, 0.1);
    color: #0b4da2;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-category-count {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d5e4fb;
    color: #0b4da2;
    font-weight: 700;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.service-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    content-visibility: auto;
    contain-intrinsic-size: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.service-product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e9ecef;
}

.service-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-product-card:hover .service-product-image img {
    transform: scale(1.05);
}

.service-product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-product-content > * {
    pointer-events: none;
}

.service-product-category {
    color: #0b4da2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.service-product-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-product-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: auto;
    min-height: 42px;
}

.service-card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.service-card-overlay-link:focus-visible {
    outline: 2px solid #1e6bd6;
    outline-offset: -2px;
}

.learn-more {
    display: inline-block;
    color: #1e6bd6;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 3;
    width: fit-content;
    pointer-events: auto;
}

.learn-more:hover {
    color: #0b4da2 !important;
    gap: 12px;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.service-product-card:hover .learn-more i {
    transform: translateX(4px);
}

.service-product-card:hover .learn-more,
.service-product-card:focus-within .learn-more {
    color: #0b4da2 !important;
    gap: 12px;
}

.no-services {
    text-align: center;
    grid-column: 1 / -1;
    padding: 60px 20px;
    color: #666;
}

.service-product-card-hidden {
    display: none;
}

.service-category-more {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 8px;
}

.service-more-btn {
    padding: 10px 22px;
    font-size: 14px;
}

.news-item {
    content-visibility: auto;
    contain-intrinsic-size: 140px;
}

.service-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eef5ff;
    color: #0b4da2;
    margin-bottom: 24px;
    font-size: 14px;
}

.service-detail-category span {
    opacity: 0.8;
}

.service-detail-body {
    background: linear-gradient(180deg, rgba(247,250,255,0.72) 0%, rgba(255,255,255,0.96) 60%);
}

.service-detail-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-block {
    margin-bottom: 28px;
}

.service-detail-block h3 {
    color: #1b2c43;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.service-rich-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.9;
}

.service-rich-text p {
    margin-bottom: 12px;
}

.service-rich-text ul,
.service-rich-text ol {
    margin: 10px 0 16px 20px;
}

.service-rich-text li {
    margin-bottom: 8px;
}

.service-rich-text table,
.faq-answer-content table {
    width: max-content;
    max-width: 100%;
    margin: 18px 0;
    border-collapse: separate;
    border-spacing: 0;
    display: block;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #d6e2f1;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(16, 54, 96, 0.08);
}

.service-rich-text thead,
.service-rich-text tbody,
.service-rich-text tr,
.faq-answer-content thead,
.faq-answer-content tbody,
.faq-answer-content tr {
    width: auto;
}

.service-rich-text th,
.service-rich-text td,
.faq-answer-content th,
.faq-answer-content td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e5edf6;
    border-right: 1px solid #edf3fa;
    color: #44556b;
    font-size: 14px;
    line-height: 1.8;
    background: #fff;
}

.service-rich-text th,
.faq-answer-content th {
    background: linear-gradient(180deg, #eaf3ff 0%, #dfeefe 100%);
    color: #183b63;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.service-rich-text tr:nth-child(even) td,
.faq-answer-content tr:nth-child(even) td {
    background: #f9fbfe;
}

.service-rich-text tr:last-child td,
.faq-answer-content tr:last-child td {
    border-bottom: 0;
}

.service-rich-text th:last-child,
.service-rich-text td:last-child,
.faq-answer-content th:last-child,
.faq-answer-content td:last-child {
    border-right: 0;
}

.service-rich-text caption,
.faq-answer-content caption {
    caption-side: top;
    text-align: left;
    padding: 0 0 10px;
    color: #27496f;
    font-size: 14px;
    font-weight: 700;
}

.service-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 0;
}

.service-feature-list li {
    position: relative;
    padding: 10px 12px 10px 34px;
    border-radius: 10px;
    background: #f6f9ff;
    color: #3f4a5a;
    line-height: 1.6;
}

.service-feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #1e6bd6;
    position: absolute;
    left: 12px;
    top: 12px;
}

.service-flow-diagram {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    background: #f8faff;
    border: 1px solid #e5edf8;
    border-radius: 12px;
    padding: 16px;
}

.service-flow-step {
    flex: 1 1 210px;
    min-height: 112px;
    border-radius: 10px;
    padding: 14px 14px 12px;
    background: #fff;
    border: 1px solid #d8e5f7;
    box-shadow: 0 2px 10px rgba(30, 107, 214, 0.08);
}

.flow-step-index {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1e6bd6;
    margin-bottom: 8px;
}

.service-flow-step p {
    margin: 0;
    color: #3f4a5a;
    line-height: 1.55;
    font-size: 14px;
}

.service-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8aa8d8;
    font-size: 16px;
    padding: 0 2px;
}

.service-process-fallback {
    background: #f8faff;
    border: 1px solid #e5edf8;
    border-radius: 12px;
    padding: 16px;
}

.service-detail-cta {
    text-align: center;
    margin-top: 34px;
}

/* 服务详情页：同类产品推荐 */
.related-services-grid {
    gap: 20px;
}

.related-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    padding: 20px;
    margin-bottom: 0;
}

.related-service-card i {
    font-size: 28px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.related-service-card h3 {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.related-service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.related-service-btn {
    margin-top: 14px;
    font-size: 13px;
    padding: 8px 14px;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.service-category-home-count {
    color: #0b4da2;
    font-weight: 700;
    margin-top: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        padding: 15px;
    }

    .nav ul {
        margin-top: 15px;
    }

    .nav li {
        margin-left: 15px;
        margin-right: 15px;
    }

    .banner {
        height: 300px;
    }

    .service-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-category-header h3 {
        font-size: 24px;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-image {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        height: 150px;
    }

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

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

    .service-flow-diagram {
        flex-direction: column;
        gap: 8px;
    }

    .service-flow-arrow {
        transform: rotate(90deg);
        padding: 2px 0;
    }

    .service-detail-block h3 {
        font-size: 20px;
    }
}

/* 动画效果 */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* 面包屑导航 */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb .container {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #1e6bd6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
}

.nav-search-item a {
    width: 38px;
    height: 38px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.header.scrolled .nav-search-item a {
    border-color: rgba(31, 41, 55, 0.25);
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-faq-section {
    padding: 60px 0;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce7f5;
    border-radius: 16px;
    padding: 0 22px;
    box-shadow: 0 12px 32px rgba(15, 42, 74, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: #bfd3ec;
    box-shadow: 0 16px 36px rgba(15, 42, 74, 0.1);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: #8ab1de;
    box-shadow: 0 18px 40px rgba(17, 74, 140, 0.14);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    color: #16324f;
}

.faq-toggle-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e7f0fb;
    color: #1b5fa7;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-item[open] .faq-toggle-icon {
    transform: rotate(45deg);
    background: #1b5fa7;
    color: #fff;
}

.faq-answer {
    padding: 0 0 22px;
}

.faq-answer-content {
    color: #4e5f74;
    font-size: 15px;
    line-height: 1.95;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(232, 241, 251, 0.65);
    border: 1px solid rgba(168, 192, 222, 0.45);
}

.faq-answer-content > :first-child {
    margin-top: 0;
}

.faq-answer-content > :last-child {
    margin-bottom: 0;
}

.faq-answer-content p,
.faq-answer-content ul,
.faq-answer-content ol {
    margin: 0 0 12px;
}

.faq-answer-content ul,
.faq-answer-content ol {
    padding-left: 22px;
}

.faq-answer-content strong,
.faq-answer-content b {
    color: #183b63;
}

.faq-answer-content table {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 0 16px;
        border-radius: 14px;
    }

    .faq-item summary {
        padding: 18px 0;
        gap: 12px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-toggle-icon {
        width: 32px;
        height: 32px;
    }

    .faq-answer-content {
        padding: 14px 15px;
        font-size: 14px;
    }

    .service-rich-text table,
    .faq-answer-content table {
        width: max-content;
        max-width: 100%;
        margin: 16px 0;
        border-radius: 12px;
    }

    .service-rich-text th,
    .service-rich-text td,
    .faq-answer-content th,
    .faq-answer-content td {
        padding: 12px 13px;
        font-size: 13px;
        line-height: 1.7;
    }
}

/* apply-msg */

.apply-msg {
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.apply-msg.success {
    background: #e8f7ee;
    border: 1px solid #9bd6b0;
    color: #1e6c3b;
}

.apply-msg.error {
    background: #fdecee;
    border: 1px solid #f2b8be;
    color: #9b2332;
}

.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.apply-modal.open {
    display: flex;
}

.apply-modal-dialog {
    background: #fff;
    width: min(760px, 100%);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow: auto;
}

.apply-modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    border: 0;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #4b5563;
}

.apply-form small {
    color: #7b8798;
    margin-bottom: 10px;
}

.captcha-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
}

.captcha-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 42px;
    border: 1px dashed #b7c7e3;
    border-radius: 6px;
    background: #f2f7ff;
    color: #1d4f99;
    font-weight: 700;
    letter-spacing: 2px;
}

.captcha-refresh {
    color: #1e6bd6;
    text-decoration: none !important;
    font-size: 13px;
    white-space: nowrap;
}

.captcha-refresh:hover {
    color: #0b4da2;
}

.search-page-section {
    padding: 60px 0;
}

.search-page-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 20px;
}

.search-page-form input {
    border: 1px solid #d9e1ef;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
}

.search-page-form button {
    border: 0;
    border-radius: 6px;
    background: #1e6bd6;
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
}

.search-result-head {
    color: #5e6a7f;
    margin-bottom: 16px;
}

.search-result-list {
    display: grid;
    gap: 16px;
}

.search-result-item {
    background: #fff;
    border: 1px solid #e6ebf4;
    border-radius: 10px;
    padding: 18px;
}

.search-result-item h3 {
    margin-bottom: 8px;
}

.search-result-item h3 a {
    text-decoration: none !important;
    color: #1f2937;
}

.search-result-item h3 a:hover {
    color: #1e6bd6;
}

.search-meta {
    display: flex;
    gap: 14px;
    color: #8691a3;
    font-size: 13px;
    margin-bottom: 8px;
}

/* 网格布局 */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* 分页样式 */
.pagination {
    margin: 40px 0;
}

.pagination .btn {
    margin: 0 5px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
}

.pagination .btn:hover {
    background: #1e6bd6;
    color: #fff;
    border-color: #1e6bd6;
}

.pagination .btn-primary {
    background: #1e6bd6;
    color: #fff;
    border-color: #1e6bd6;
}

/* ========== 新闻页面样式 ========== */
.news-section {
    padding: 60px 0;
}

.news-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.news-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e9ecef;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-card-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.news-meta .date {
    color: #1e6bd6;
    font-weight: 600;
}

.news-meta .category {
    background: #f0f5ff;
    color: #1e6bd6;
    padding: 2px 8px;
    border-radius: 3px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-content h3 a:hover {
    color: #1e6bd6;
}

.news-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e6bd6;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0b4da2 !important;
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

.category-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 20px;
    background: #f0f5ff;
    color: #1e6bd6;
    border: 1px solid #1e6bd6;
    border-radius: 25px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
    background: #1e6bd6;
    color: #fff;
}

.pagination-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 12px;
    background: #f0f5ff;
    color: #1e6bd6;
    border: 1px solid #1e6bd6;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-btn:hover {
    background: #1e6bd6;
    color: #fff;
}

.page-btn.active {
    background: #1e6bd6;
    color: #fff;
}

/* ========== 新闻详情页样式 ========== */
.news-detail-section {
    padding: 60px 0;
}

.news-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.news-detail-header h1 {
    font-size: 30px;
    line-height: 1.35;
    color: #222;
    margin-bottom: 16px;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

.news-detail-meta i {
    color: #1e6bd6;
    margin-right: 6px;
}

.news-detail-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}

.news-detail-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.news-detail-summary {
    background: #f5f8ff;
    border-left: 4px solid #1e6bd6;
    padding: 14px 16px;
    border-radius: 6px;
    color: #4d5562;
    margin-bottom: 26px;
    line-height: 1.8;
}

.news-detail-content {
    color: #333;
    font-size: 16px;
    line-height: 1.9;
}

.news-detail-content p {
    margin-bottom: 14px;
}

.news-detail-actions {
    margin-top: 32px;
}

.news-pager {
    margin-top: 24px;
    border-top: 1px solid #eef1f6;
    padding-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.news-pager-item {
    background: #fafcff;
    border: 1px solid #e7edf8;
    border-radius: 8px;
    padding: 12px 14px;
    min-height: 68px;
}

.news-pager-item span {
    display: block;
    color: #7a8699;
    font-size: 12px;
    margin-bottom: 6px;
}

.news-pager-item a {
    color: #1f2937;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.5;
}

.news-pager-item a:hover {
    color: #1e6bd6;
}

.news-pager-item em {
    color: #9aa3b2;
    font-style: normal;
}

.news-pager-item.next {
    text-align: right;
}

.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e6bd6;
    text-decoration: none !important;
    font-weight: 600;
}

.back-to-news:hover {
    color: #0b4da2;
}

.related-news-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.related-news-card h3 {
    color: #222;
    margin-bottom: 14px;
}

.related-news-card ul {
    list-style: none;
}

.related-news-card li {
    padding: 10px 0;
    border-bottom: 1px dashed #e6e9ef;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.related-news-card li:last-child {
    border-bottom: none;
}

.related-news-card a {
    color: #1f2937;
    text-decoration: none !important;
}

.related-news-card a:hover {
    color: #1e6bd6;
}

.related-news-card span {
    color: #8b93a2;
    font-size: 13px;
    white-space: nowrap;
}

/* ========== 下载页面样式 ========== */
.downloads-section {
    padding: 60px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.download-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.download-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.download-card-icon {
    font-size: 48px;
    color: #1e6bd6;
    margin-bottom: 15px;
}

.download-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.file-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.file-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 12px;
    color: #999;
}

.file-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-card-action {
    width: 100%;
    margin-top: auto;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1e6bd6;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.download-btn:visited,
.download-btn i {
    color: #fff !important;
}

.download-btn:hover {
    background: #0b4da2;
    transform: translateY(-2px);
}

.download-notice {
    background: #f0f5ff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.download-notice h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
}

.download-notice ul {
    color: #666;
    line-height: 2;
}

/* ========== 联系页面样式 ========== */
.contact-header-section {
    padding: 60px 0;
}

.contact-cards-section {
    padding: 40px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.contact-card-icon {
    font-size: 40px;
    color: #1e6bd6;
    margin-bottom: 15px;
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-section {
    padding: 40px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e6bd6;
    box-shadow: 0 0 0 3px rgba(30, 107, 214, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.service-promise-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.promise-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.promise-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.promise-icon {
    font-size: 48px;
    color: #1e6bd6;
    margin-bottom: 20px;
}

.promise-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.promise-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== 关于页面样式 ========== */
.about-header-section {
    padding: 60px 0;
}

.company-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.overview-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.advantages-section {
    padding: 60px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 48px;
    color: #1e6bd6;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.team-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 80px;
    color: #1e6bd6;
    margin-bottom: 20px;
    line-height: 1;
}

.member-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.member-info .position {
    color: #1e6bd6;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-info .description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.partners-section {
    padding: 60px 0;
}

.partners-content {
    max-width: 1000px;
    margin: 0 auto;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.partners-list span {
    background: #f0f5ff;
    color: #1e6bd6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e6bd6, #0b4da2);
}

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

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.no-data {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .downloads-grid {
        grid-template-columns: 1fr;
    }

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

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .partners-list {
        gap: 10px;
    }

    .partners-list span {
        font-size: 13px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .form-container {
        padding: 20px;
    }

    .cta-content h3 {
        font-size: 22px;
    }

    .join-search-form,
    .search-page-form {
        grid-template-columns: 1fr;
    }

    .join-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .job-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .job-row-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

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

    .job-detail-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

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

    .news-pager-item.next {
        text-align: left;
    }
}

/* ============================================================
 * TECH THEME SYSTEM — Modellab 科技感设计体系
 * ============================================================ */

:root {
    --navy:            #09152B;
    --navy-800:        #0D1F3C;
    --navy-700:        #112D56;
    --sky:             #0EA5E9;
    --sky-400:         #38BDF8;
    --sky-300:         #7DD3FC;
    --blue:            #1e6bd6;
    --blue-dark:       #0b4da2;
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #1e6bd6 100%);
    --gradient-navy:    linear-gradient(180deg, #09152B 0%, #0D1F3C 100%);
    --gradient-text:    linear-gradient(135deg, #0EA5E9, #1e6bd6);
    --glow-sky:         0 0 24px rgba(14,165,233,0.35);
    --glow-blue:        0 0 20px rgba(30,107,214,0.25);
    --radius-sm:        6px;
    --radius-md:        10px;
    --radius-lg:        16px;
    --radius-xl:        24px;
    --transition:       0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- 工具类 ---- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Body 背景 ---- */
body {
    background: #eef2f7;
}

/* ---- Header 升级 ---- */
.header {
    background: linear-gradient(180deg, rgba(9,21,43,0.6) 0%, rgba(9,21,43,0.28) 70%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(9,21,43,0.08);
}

/* ---- Banner 升级 ---- */
.banner {
    height: 600px;
}

.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9,21,43,0.45) 0%, rgba(9,21,43,0.2) 50%, rgba(9,21,43,0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.banner-content {
    z-index: 3;
    padding: 0 20px;
    width: 100%;
    max-width: 840px;
}

.banner-content h2 {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.banner-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.9;
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
    max-width: 640px;
    margin: 0 auto;
}

/* ---- 卡片 升级 ---- */
.card {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 16px rgba(9,21,43,0.06), 0 8px 32px rgba(9,21,43,0.04);
}

.card:hover {
    box-shadow: 0 4px 24px rgba(9,21,43,0.10), 0 12px 40px rgba(14,165,233,0.07);
    transform: translateY(-4px);
}

.card-header {
    background: linear-gradient(135deg, #09152B 0%, #112D56 50%, #0b4da2 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-header h2 {
    font-size: 26px;
    letter-spacing: 3px;
}

/* ---- Section Title 升级 ---- */
.section-title h2 {
    font-size: 32px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #09152B 0%, #1e6bd6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ---- 首页服务卡片（.service-card）升级 ---- */
.service-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(14,165,233,0.12);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.service-card:hover {
    border-color: rgba(14,165,233,0.3);
    box-shadow: 0 8px 32px rgba(14,165,233,0.12), 0 2px 16px rgba(9,21,43,0.06);
    transform: translateY(-6px);
}

.service-card i {
    color: var(--sky);
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(30,107,214,0.1));
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: background var(--transition);
}

.service-card:hover i {
    background: var(--gradient-primary);
    color: #fff;
}

/* ---- 统计数据 深色科技面板 ---- */
.stats {
    background: linear-gradient(135deg, #09152B 0%, #0D1F3C 60%, #112D56 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14,165,233,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.stats h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    letter-spacing: 4px;
    background: none !important;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    box-shadow: none;
    transition: all var(--transition);
    padding: 36px 24px;
}

.stat-card:hover {
    background: rgba(14,165,233,0.08);
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-6px);
    box-shadow: var(--glow-sky);
}

.stat-card i {
    color: var(--sky) !important;
    filter: drop-shadow(0 0 8px rgba(14,165,233,0.6));
    margin-bottom: 18px;
}

.stat-card h3 {
    color: var(--sky-400) !important;
    font-size: 52px;
    font-weight: 900;
    text-shadow: 0 0 28px rgba(56,189,248,0.45);
    margin: 12px 0 10px;
}

.stat-card p {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ---- 按钮 升级 ---- */
.btn,
.btn-primary {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after,
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after,
.btn-primary:hover::after {
    opacity: 1;
}

.btn:hover,
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(14,165,233,0.4);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ---- 新闻卡片 升级 ---- */
.news-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14,165,233,0.08);
    transition: all var(--transition);
}

.news-card:hover {
    border-color: rgba(14,165,233,0.22);
    box-shadow: 0 8px 32px rgba(14,165,233,0.1), 0 2px 16px rgba(9,21,43,0.06);
}

/* ---- 页脚 升级 ---- */
.footer {
    background: linear-gradient(180deg, #09152B 0%, #050e1e 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.footer-section h3 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section ul li a:hover {
    color: var(--sky) !important;
    text-decoration: none !important;
}

.social-links a:hover {
    color: var(--sky) !important;
}

.footer-bottom {
    border-top-color: rgba(14,165,233,0.12);
}

/* ---- 服务产品卡片 升级 ---- */
.service-product-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14,165,233,0.08);
    transition: all var(--transition);
}

.service-product-card:hover {
    border-color: rgba(14,165,233,0.22);
    box-shadow: 0 8px 32px rgba(14,165,233,0.1), 0 2px 16px rgba(9,21,43,0.06);
}

/* ---- 通用信息卡片 升级 ---- */
.contact-info-card,
.promise-card,
.advantage-card,
.team-member-card,
.download-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14,165,233,0.06);
    transition: all var(--transition);
}

.contact-info-card:hover,
.promise-card:hover,
.advantage-card:hover,
.team-member-card:hover,
.download-card:hover {
    border-color: rgba(14,165,233,0.2);
    box-shadow: 0 8px 32px rgba(14,165,233,0.1);
    transform: translateY(-5px);
}

/* ---- 输入框 升级 ---- */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

/* ---- CTA 升级 ---- */
.cta-section {
    background: linear-gradient(135deg, #09152B 0%, #112D56 50%, #0b4da2 100%);
}

/* ---- Page Banner 升级 ---- */
.page-banner {
    height: 440px;
}

.page-banner-overlay {
    background: linear-gradient(180deg, rgba(9,21,43,0.5) 0%, rgba(9,21,43,0.3) 100%);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.page-banner p {
    font-size: 18px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* ---- 面包屑 升级 ---- */
.breadcrumb {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(14,165,233,0.1);
}

/* ---- Service category overview card 升级 ---- */
.service-category-overview-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14,165,233,0.1);
    transition: all var(--transition);
}

.service-category-overview-card:hover {
    border-color: rgba(14,165,233,0.25);
    box-shadow: 0 12px 36px rgba(14,165,233,0.12);
    transform: translateY(-5px);
}

.service-category-overview-icon {
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
}

/* ============================================================
 * HOME PAGE — 首页专属科技感组件
 * ============================================================ */

/* ---- Hero 定位面板 ---- */
.home-hero-panel {
    position: relative;
    background: linear-gradient(135deg, #09152B 0%, #0D1F3C 60%, #112D56 100%);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    margin: 40px 0;
    overflow: hidden;
    color: #fff;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.home-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,165,233,0.15);
    border: 1px solid rgba(14,165,233,0.3);
    color: var(--sky-300);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.home-hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #fff;
}

.home-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
    margin-bottom: 36px;
}

.home-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.home-hero-kpis {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.home-hero-kpi {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(14,165,233,0.18);
}

.home-hero-kpi strong {
    color: #7dd3fc;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.home-hero-kpi span {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    letter-spacing: 0.6px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid rgba(14,165,233,0.5);
    color: var(--sky-300) !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--sky);
    background: rgba(14,165,233,0.12);
    color: #fff !important;
}

/* 装饰圆环 + 网格 */
.home-hero-deco {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(14,165,233,0.1);
}

.deco-ring-1 {
    width: 520px; height: 520px;
    right: -160px; top: -160px;
}

.deco-ring-2 {
    width: 340px; height: 340px;
    right: -30px; top: -30px;
    border-color: rgba(14,165,233,0.18);
}

.deco-ring-3 {
    width: 200px; height: 200px;
    right: 70px; top: 70px;
    border-color: rgba(14,165,233,0.25);
}

.deco-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14,165,233,0.10) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ---- 首页服务网格 ---- */
.home-services-section {
    padding: 60px 0 40px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.home-service-card {
    position: relative;
    display: block;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(14,165,233,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
    transition: all var(--transition);
}

.home-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14,165,233,0.35);
    box-shadow: 0 12px 40px rgba(14,165,233,0.12), 0 2px 16px rgba(9,21,43,0.06);
    color: inherit;
    text-decoration: none;
}

.home-service-card-inner {
    position: relative;
    z-index: 2;
}

.home-service-icon {
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(30,107,214,0.12));
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    transition: all var(--transition);
}

.home-service-card:hover .home-service-icon {
    background: var(--gradient-primary);
}

.home-service-icon i {
    font-size: 24px;
    color: var(--sky);
    transition: color var(--transition);
}

.home-service-card:hover .home-service-icon i {
    color: #fff;
}

.home-service-num {
    position: absolute;
    top: -6px; right: 0;
    font-size: 60px;
    font-weight: 900;
    color: rgba(14,165,233,0.06);
    line-height: 1;
    user-select: none;
}

.home-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 12px;
    text-decoration: none;
}

.home-service-card p {
    color: #546272;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 58px;
    text-decoration: none;
}

.home-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(14,165,233,0.1);
}

.home-service-count {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-service-arrow {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,0.1);
    border-radius: 50%;
    color: var(--sky);
    font-size: 12px;
    transition: all var(--transition);
}

.home-service-card:hover .home-service-arrow {
    background: var(--sky);
    color: #fff;
    transform: translateX(4px);
}

/* 悬停发光层 */
.home-service-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at top left, rgba(14,165,233,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.home-service-card:hover .home-service-glow {
    opacity: 1;
}

/* ---- 首页流程区 ---- */
.home-process-section {
    padding: 32px 0 20px;
}

.home-process-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-process-card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #f6fafe 100%);
    border: 1px solid rgba(14,165,233,0.14);
    border-radius: 14px;
    padding: 22px 20px;
    min-height: 188px;
    transition: all var(--transition);
}

.home-process-card::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

.home-process-card:hover {
    border-color: rgba(14,165,233,0.32);
    box-shadow: 0 10px 30px rgba(14,165,233,0.11), 0 2px 10px rgba(9,21,43,0.05);
    transform: translateY(-4px);
}

.home-process-card:hover::after {
    opacity: 1;
}

.home-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #0a4e9d;
    background: rgba(14,165,233,0.15);
    margin-bottom: 12px;
}

.home-process-card h3 {
    font-size: 18px;
    color: #0e2341;
    margin-bottom: 8px;
}

.home-process-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #55667d;
    margin: 0;
}

/* ---- 首页新闻区 ---- */
.home-news-section {
    padding: 40px 0 60px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.home-news-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(14,165,233,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.home-news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14,165,233,0.22);
    box-shadow: 0 8px 32px rgba(14,165,233,0.1);
}

.home-news-img-link {
    display: block;
    height: 180px;
    overflow: hidden;
    background: #e5edf8;
}

.home-news-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-news-card:hover .home-news-img-link img {
    transform: scale(1.06);
}

.home-news-body {
    padding: 24px;
}

.home-news-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.home-news-date {
    font-size: 12px;
    color: #8a99b3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-news-cat {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(14,165,233,0.1);
    color: var(--blue);
}

.home-news-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1A2B48;
    margin-bottom: 10px;
    line-height: 1.5;
}

.home-news-body h3 a {
    color: inherit;
    text-decoration: none !important;
}

.home-news-body h3 a:hover {
    color: var(--sky);
}

.home-news-body p {
    color: #5e6e84;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.home-empty-state {
    margin-top: 28px;
    border: 1px dashed rgba(14,165,233,0.28);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(240,248,255,0.9) 100%);
    padding: 34px 20px;
    text-align: center;
}

.home-empty-state i {
    font-size: 26px;
    color: #1e6bd6;
    margin-bottom: 10px;
}

.home-empty-state h3 {
    font-size: 20px;
    color: #0f2548;
    margin-bottom: 8px;
}

.home-empty-state p {
    margin: 0;
    color: #62738a;
}

/* ---- Tech 响应式 ---- */
@media (max-width: 900px) {
    .home-hero-panel {
        padding: 48px 32px;
    }
    .home-hero-title { font-size: 34px; }
    .home-hero-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .banner { height: 460px; }
    .banner-content h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .home-hero-panel {
        padding: 40px 24px;
        border-radius: var(--radius-lg);
        margin: 20px 0;
    }
    .home-hero-title { font-size: 26px; }
    .home-hero-kpis {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .deco-ring { display: none; }
    .home-services-grid { grid-template-columns: 1fr; }
    .home-process-grid { grid-template-columns: 1fr; }
    .home-news-grid { grid-template-columns: 1fr; }
    .banner { height: 380px; }
    .banner-content h2 { font-size: 26px; }
    .stat-card h3 { font-size: 40px; }
    .page-banner { height: 320px; }
    .page-banner h1 { font-size: 28px; }
}

/* ============================================================
 * HOME MOBILE REBUILD — 首页移动端重构
 * ============================================================ */

.mobile-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    transition: all var(--transition);
}

.mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.mobile-subnav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: rgba(14,165,233,0.08);
    color: #0e2341;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    cursor: pointer;
    transition: all var(--transition);
}

.mobile-subnav-toggle i {
    transition: transform var(--transition);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(9,21,43,0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1040;
}

.mobile-nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

.banner {
    border-radius: 0 0 32px 32px;
}

.swiper-slide {
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,20,41,0.12) 0%, rgba(8,20,41,0.2) 32%, rgba(8,20,41,0.72) 100%);
    z-index: 1;
}

.banner-content {
    inset: 0;
    left: 0;
    top: 0;
    transform: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    padding: 0 40px 64px;
    text-align: left;
}

.banner-text-shell {
    position: relative;
    z-index: 3;
    width: min(100%, 760px);
    padding: 28px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(7,18,37,0.36) 0%, rgba(7,18,37,0.72) 100%);
    border: 1px solid rgba(125,211,252,0.22);
    box-shadow: 0 24px 60px rgba(4,10,24,0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.banner-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(125,211,252,0.14);
    border: 1px solid rgba(125,211,252,0.32);
    color: #d7f2ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
}

.banner-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.banner-metrics span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.88);
    font-size: 12px;
    font-weight: 600;
}

.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
}

.banner-link:hover {
    background: rgba(255,255,255,0.14);
    color: #fff !important;
}

.banner .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 22px;
}

.banner .swiper-pagination {
    bottom: 22px !important;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.36);
    opacity: 1;
    transition: all var(--transition);
}

.banner .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: #fff;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    font-size: 18px;
    font-weight: 800;
}

.home-news-footer {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 960px) {
    .header {
        background: linear-gradient(180deg, rgba(9,21,43,0.78) 0%, rgba(9,21,43,0.28) 100%);
    }

    .header .container {
        padding: 14px 18px;
        gap: 12px;
    }

    .header.scrolled,
    body.nav-open .header {
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-nav-toggle {
        display: inline-flex;
        margin-left: auto;
        position: relative;
        z-index: 1060;
    }

    .header.scrolled .mobile-nav-toggle,
    body.nav-open .mobile-nav-toggle {
        border-color: rgba(17,45,86,0.12);
        background: rgba(14,165,233,0.08);
    }

    .header.scrolled .mobile-nav-toggle span,
    body.nav-open .mobile-nav-toggle span {
        background: #0D1F3C;
    }

    .mobile-nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 82px;
        left: 16px;
        right: 16px;
        z-index: 1050;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255,255,255,0.97);
        border: 1px solid rgba(14,165,233,0.12);
        box-shadow: 0 22px 60px rgba(4,10,24,0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        transform-origin: top center;
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .nav.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nav ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 0;
    }

    .nav li {
        margin: 0;
    }

    .nav a {
        color: #0e2341 !important;
        background: rgba(14,165,233,0.06);
        border: 1px solid transparent;
        border-radius: 16px;
        padding: 14px 16px;
        justify-content: flex-start;
        flex: 1 1 auto;
        min-width: 0;
    }

    .mobile-subnav-toggle {
        display: inline-flex;
    }

    .dropdown {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: start;
    }

    .dropdown > .dropdown-menu {
        grid-column: 1 / -1;
    }

    .dropdown.mobile-expanded .mobile-subnav-toggle {
        background: rgba(14,165,233,0.14);
        color: #0b4da2;
    }

    .dropdown.mobile-expanded .mobile-subnav-toggle i {
        transform: rotate(45deg);
    }

    .nav a:hover,
    .nav a.active,
    .header.scrolled .nav a:hover,
    .header.scrolled .nav a.active {
        color: #0b4da2 !important;
        background: rgba(14,165,233,0.12);
        border-color: rgba(14,165,233,0.14);
    }

    .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        min-width: 0;
        margin-top: 0;
        border-radius: 16px;
        background: #f6fbff;
        border: 1px solid rgba(14,165,233,0.1);
        padding: 6px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition), opacity var(--transition), visibility var(--transition), margin-top var(--transition);
    }

    .dropdown.mobile-expanded .dropdown-menu,
    .dropdown.mobile-expanded:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 8px;
        max-height: 320px;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 10px 12px;
        background: transparent;
        border-radius: 12px;
    }

    .nav-search-item a {
        justify-content: center;
    }

    .banner {
        height: min(84vh, 720px);
    }

    .banner-content {
        padding: 0 24px 58px;
    }

    .banner-content h2 {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .banner-content p {
        font-size: 16px;
        max-width: none;
        margin: 0;
    }

    .home-services-section,
    .home-process-section,
    .home-news-section {
        padding-left: 0;
        padding-right: 0;
    }
}

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

    .logo-img {
        width: 146px;
    }

    .banner {
        height: min(88vh, 680px);
        min-height: 560px;
        border-radius: 0 0 28px 28px;
    }

    .banner::after {
        background: linear-gradient(180deg, rgba(9,21,43,0.18) 0%, rgba(9,21,43,0.32) 32%, rgba(9,21,43,0.86) 100%);
    }

    .banner-content {
        padding: 0 18px 50px;
    }

    .banner-text-shell {
        width: 100%;
        padding: 20px 18px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(7,18,37,0.28) 0%, rgba(7,18,37,0.76) 100%);
    }

    .banner-chip {
        margin-bottom: 12px;
        letter-spacing: 1.2px;
    }

    .banner-content h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .banner-metrics {
        gap: 8px;
        margin-top: 14px;
    }

    .banner-metrics span {
        font-size: 11px;
        min-height: 28px;
        padding: 0 10px;
    }

    .banner-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .banner .btn,
    .banner-link {
        width: 100%;
        min-height: 44px;
    }

    .banner .swiper-button-prev,
    .banner .swiper-button-next {
        display: none;
    }

    .banner .swiper-pagination {
        bottom: 16px !important;
    }

    .main-content {
        padding-top: 16px;
    }

    .main-content .home-hero-panel:first-child {
        margin-top: -86px;
        position: relative;
        z-index: 5;
        box-shadow: 0 18px 42px rgba(4,10,24,0.16);
    }

    .home-hero-panel {
        padding: 26px 18px 20px;
        margin-bottom: 12px;
    }

    .home-hero-tag {
        font-size: 11px;
        letter-spacing: 0.7px;
        margin-bottom: 16px;
        padding: 6px 12px;
    }

    .home-hero-title {
        font-size: 29px;
        line-height: 1.16;
        margin-bottom: 14px;
    }

    .home-hero-desc {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .home-hero-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-hero-btns .btn,
    .home-hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .home-hero-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
    }

    .home-hero-kpi {
        padding: 14px 10px;
    }

    .home-hero-kpi strong {
        font-size: 20px;
    }

    .home-hero-kpi span {
        font-size: 11px;
        line-height: 1.45;
    }

    .section-title {
        margin-bottom: 22px;
        text-align: left;
    }

    .section-title h2 {
        font-size: 26px;
        letter-spacing: 1px;
        line-height: 1.25;
        text-align: left;
    }

    .section-title p {
        font-size: 14px;
        text-align: left;
    }

    .section-title::after {
        margin-left: 0;
    }

    .home-services-section {
        padding-top: 26px;
        padding-bottom: 12px;
    }

    .home-services-grid {
        gap: 14px;
        margin-top: 24px;
    }

    .home-service-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .home-service-num {
        top: 6px;
        font-size: 46px;
    }

    .home-service-card p {
        min-height: 0;
    }

    .home-process-section {
        padding-top: 22px;
        padding-bottom: 8px;
    }

    .home-process-grid {
        gap: 14px;
        margin-top: 24px;
    }

    .home-process-card {
        min-height: 0;
        border-radius: 18px;
        padding: 20px 18px;
    }

    .stats {
        padding: 36px 0;
        margin-top: 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stat-card {
        padding: 22px 14px;
        border-radius: 20px;
    }

    .stat-card i {
        font-size: 24px !important;
        margin-bottom: 10px;
    }

    .stat-card h3 {
        font-size: 30px;
        margin: 8px 0 6px;
    }

    .stat-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .home-news-section {
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .home-news-grid {
        gap: 16px;
        margin-top: 24px;
    }

    .home-news-card {
        border-radius: 20px;
    }

    .home-news-img-link {
        height: 190px;
    }

    .home-news-body {
        padding: 18px;
    }

    .home-news-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .home-news-body h3 {
        font-size: 16px;
        line-height: 1.55;
    }

    .home-news-body p {
        font-size: 13px;
    }

    .home-news-footer {
        margin-top: 24px;
    }
}

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

    .header .container {
        padding: 12px 16px;
    }

    .logo-img {
        width: 138px;
    }

    .nav {
        top: 74px;
        left: 12px;
        right: 12px;
        padding: 14px;
        border-radius: 20px;
    }

    .banner {
        min-height: 520px;
        border-radius: 0 0 24px 24px;
    }

    .banner-content {
        padding: 0 14px 46px;
    }

    .banner-text-shell {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 13px;
    }

    .main-content .home-hero-panel:first-child {
        margin-top: -74px;
    }

    .home-hero-panel {
        padding: 22px 16px 18px;
    }

    .home-hero-title {
        font-size: 25px;
    }

    .home-hero-kpis {
        grid-template-columns: 1fr;
    }

    .home-service-card,
    .home-process-card,
    .home-news-card,
    .stat-card {
        border-radius: 18px;
    }
}
