/* ========================================
   统一样式表 - 首页 & 内页合并版
   ======================================== */

/* ===== 变量与基础 ===== */
:root {
    --primary: #6aa5ff;
    --primary-light: #cee1ff;
    --primary-dark: #4a8de6;
    --text-dark: #2c3e50;
    --text-gray: #5a6a7a;
    --text-light: #8a9aaa;
	  --bg: #f8fbff;
  --bg-warm: #fff9f5;
    --text: #2d3748;
  --text-lighter: #a0aec0;
    --bg-light: #f5f9ff;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-xl: 24px;
    --shadow: 0 8px 32px rgba(106, 165, 255, 0.12);
    --shadow-hover: 0 12px 40px rgba(106, 165, 255, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-padding {
    padding: 80px 0;
}

/* ===== 导航栏 ===== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: bold;
    color: var(--white);
    transition: color 0.3s;
}
.logo img{
	width:150px;
}

.navbar.scrolled .logo { color: var(--primary); }

.logo i {
    font-size: 32px;
    color: var(--primary-light);
}

.navbar.scrolled .logo i { color: var(--primary); }

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

.nav-item { position: relative; }

.nav-item > a {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 500;
}

.navbar.scrolled .nav-item > a { color: var(--text-dark); }

.nav-item > a:hover {
    background: rgba(106, 165, 255, 0.2);
    color: var(--white);
}

.navbar.scrolled .nav-item > a:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-item.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
}

.dropdown {
    position: absolute;
    top: 100%; left: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    margin-top: 5px;
}

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

.dropdown a {
    display: block;
    padding: 10px 24px;
    color: var(--text-gray);
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 28px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-left: 20px;
    padding: 10px 24px;
    background: rgba(106, 165, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.navbar.scrolled .nav-phone {
    background: var(--primary);
    color: var(--white);
}

.nav-phone i { font-size: 18px; }

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
}

.navbar.scrolled .mobile-toggle { color: var(--primary); }

/* ===== 移动端菜单 ===== */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav-item { border-bottom: 1px solid #eee; }

.mobile-nav-item > a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-dropdown {
    padding-left: 20px;
    padding-bottom: 10px;
    display: none;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 14px;
}

.mobile-close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===== 按钮 ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(106, 165, 255, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(106, 165, 255, 0.5);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-more:hover {
    background: var(--primary-dark);
    gap: 14px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-submit:hover { background: var(--primary-dark); }

/* ===== 板块标题 ===== */


/* ============================================
   板块标题
   ============================================ */
  .section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}



.page-section { padding: 80px 0; }

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-title p { color: var(--text-light); }

/* ===== 内页 Banner ===== */
.page-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6aa5ff 0%, #4a8de6 100%);
    overflow: hidden;
    margin-top: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(44, 62, 80, 0.7) 0%, rgba(44, 62, 80, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-banner-content { max-width: 700px; }

.page-banner-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-banner-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* 面包屑 */
.breadcrumb {
	z-index: 99;
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.breadcrumb-inner a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.breadcrumb-inner a:hover { color: #fff; }

.breadcrumb-inner i { font-size: 12px; opacity: 0.7; }

/* ===== 布局系统 ===== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.content-layout.reverse { grid-template-columns: 340px 1fr; }

.main-content { min-width: 0; }

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    color: var(--text-dark);
}

.sidebar-list li { margin-bottom: 12px; }

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 15px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 10px;
}

.sidebar-list a:hover,
.sidebar-list a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-list a i { font-size: 12px; }

/* ===== 筛选标签 ===== */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #e0e6ed;
    background: var(--white);
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

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

/* ========================================
   首页专属样式
   ======================================== */

/* --- 首页 Banner --- */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner-slide.active { opacity: 1; }

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(44, 62, 80, 0.7) 0%, rgba(44, 62, 80, 0.3) 50%, transparent 100%);
    z-index: 1;
}

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

.banner-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.banner-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.banner-content .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.banner-dots {
    position: absolute;
    bottom: 40px; left: 8%;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: var(--primary);
}

.banner-arrows {
    position: absolute;
    bottom: 30px; right: 8%;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 50px; height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

/* --- 首页关于我们 --- */
.about { background: var(--white); }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.about-left .company-name {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-left p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.about-feature i {
  color: var(--primary);
}

.about-right { position: relative; }

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img-main img {
    width: 100%; height: 480px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -30px; left: -30px;
    width: 200px; height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-float img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30px; right: -20px;
    width: 120px; height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-badge span:first-child {
    font-size: 28px;
    font-weight: bold;
}

.about-badge span:last-child { font-size: 12px; }

/* --- 首页服务项目 --- */


.services-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(106, 165, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- 首页客户案例 --- */
.cases {
    background: var(--white);
    overflow: hidden;
}

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

.cases-header h2 { font-size: 40px; }

.cases-slider-wrap { position: relative; }

.cases-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.case-card {
    min-width: calc(33.333% - 16px);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.case-card img {
    width: 100%; height: 320px;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-card:hover img { transform: scale(1.08); }

.case-info {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px 24px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.case-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.case-info p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cases-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.cases-page {
    font-size: 18px;
    color: var(--text-light);
}

.cases-page .current {
    color: var(--primary);
    font-size: 28px;
    font-weight: bold;
}

.cases-arrows {
    display: flex;
    gap: 12px;
}

.cases-arrow {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cases-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* --- 首页专家团队 --- */
.team-section {
    background: linear-gradient(180deg, #fff8f5 0%, var(--white) 100%);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.team-header-left .subtitle {
    color: var(--primary);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.team-header-left h2 {
    font-size: 2rem;
    font-weight: 600;
}

.team-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.team-tab {
    padding: 10px 60px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid #eee;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.team-tab.active,
.team-tab:hover {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.team-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--primary-light);
    padding-bottom: 15px;
    cursor: grab;
}

.team-slider-container::-webkit-scrollbar { height: 6px; }

.team-slider-container::-webkit-scrollbar-track {
    background: var(--primary-light);
    border-radius: 3px;
}

.team-slider-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.team-slider {
    display: flex;
    gap: 25px;
    width: max-content;
}

.team-card {
    width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-card-img {
    height: 330px;
    overflow: hidden;
    position: relative;
}

.team-card-img img {
    width: 100%; height:;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-card-body { padding: 20px; }

.team-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.team-card-body p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card-link {
    color: #ff7e5f;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.team-card-link:hover { gap: 10px; }

.team-hint {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- 首页新闻资讯 --- */
.news { background: var(--white); }

.news-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.news-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-featured {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
}

.news-featured img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.news-featured-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--white);
}

.news-featured-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.news-featured-overlay p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.news-item:first-child { padding-top: 0; }

.news-item:hover { padding-left: 10px; }

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.news-date .day {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.news-date .month {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.news-content h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.news-item:hover .news-content h4 { color: var(--primary); }

.news-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.news-card {
    background: #fafafa;
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: all 0.3s;
}

.news-card:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.news-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}

/* ========================================
   内页专属样式
   ======================================== */

/* --- 服务列表页 --- */
.service-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-large {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card-large .img-wrap {
    height: 240px;
    overflow: hidden;
}

.service-card-large .img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card-large:hover .img-wrap img { transform: scale(1.08); }

.service-card-large .service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-large .service-card-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card-large .service-card-body p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    color: #e85d4c;
    font-size: 20px;
    font-weight: 700;
}

.service-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* --- 服务详情页 --- */
.detail-header {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.detail-header img {
    width: 100%; height: 400px;
    object-fit: cover;
}

.detail-header .info { padding: 30px; }

.detail-header .info h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.detail-content {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.detail-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 30px 0 16px;
    padding-left: 16px;
    border-left: 4px solid var(--primary);
}

.detail-content h3:first-child { margin-top: 0; }

.detail-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-gray);
}

.detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.process-steps {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 14px;
}

.process-step .num {
    width: 40px; height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
}

/* --- 专家列表页 --- */
.expert-grid-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.expert-card-large {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.expert-card-large:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.expert-card-large img {
    width: 100%; height: ;
    object-fit: cover;
}

.expert-card-info { padding: 24px; }

.expert-card-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.expert-card-info .title {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.expert-card-info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.expert-card-info .tags span {
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
}

.expert-card-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- 专家详情页 --- */
.expert-detail-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.expert-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.expert-detail-img img {
    width: 100%; height: 480px;
    object-fit: cover;
}

.expert-detail-main h1 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.expert-detail-main .subtitle {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 24px;
    display: block;
}

.expert-detail-section { margin-bottom: 28px; }

.expert-detail-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-detail-section h3 i { color: var(--primary); }

.expert-detail-section p,
.expert-detail-section li {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.expert-detail-section ul { list-style: none; }

.expert-detail-section ul li {
    padding: 6px 0 6px 24px;
    position: relative;
}

.expert-detail-section ul li::before {
    content: '';
    position: absolute;
    left: 8px; top: 14px;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.schedule-table th,
.schedule-table td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #eee;
    font-size: 14px;
}

.schedule-table th {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.schedule-table td.available {
    color: #27ae60;
    font-weight: 600;
}

.schedule-table td.booked { color: #e0e0e0; }

/* --- 案例列表页 --- */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.case-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.case-item .case-img {
    position: relative;
    height: 260px;
}

.case-item .case-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.case-item .case-img .tag {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
}

.case-item-body { padding: 24px; }

.case-item-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.case-item-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- 新闻列表页 --- */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

.news-item-large {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.news-item-large:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.news-item-large .news-thumb {
    width: 280px; height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.news-item-large .news-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-item-large:hover .news-thumb img { transform: scale(1.08); }

.news-item-large .news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-large .news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.news-item-large .news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-item-large h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.news-item-large:hover h3 { color: var(--primary); }

.news-item-large p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: var(--text-gray);
    font-size: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.pagination a:hover,
.pagination span.current {
    background: var(--primary);
    color: #fff;
}

/* --- 新闻详情页 --- */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--text-light);
    font-size: 14px;
}

.article-body {
    background: #fff;
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.article-body p { margin-bottom: 20px; }

.article-body img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.article-body h2,
.article-body h3 {
    color: var(--text-dark);
    margin: 30px 0 16px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article-nav a {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 45%;
    transition: color 0.3s;
}

.article-nav a:hover { color: var(--primary); }

/* --- 关于我们页 --- */
.about-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-intro-text .company-name {
    font-size: 22px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-intro-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-intro-img img {
    width: 100%; height: 450px;
    object-fit: cover;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-gallery img {
    width: 100%; height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: all 0.4s;
    cursor: pointer;
}

.about-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.qualification-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.qualification-item:hover { transform: translateY(-6px); }

.qualification-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.qualification-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.qualification-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* --- 联系我们页 --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
}

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

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item .icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

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

.contact-info-item .text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.contact-qr-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-qr-item { text-align: center; }

.contact-qr-item img {
    width: 120px; height: 120px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    border: 1px solid #eee;
}

.contact-qr-item span {
    font-size: 13px;
    color: var(--text-light);
}

.contact-form-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.map-section {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-section iframe {
    width: 100%; height: 450px;
    border: none;
    display: block;
}

/* ========================================
   公共组件 - 底部 & 侧边栏
   ======================================== */

/* --- 底部 --- */
.footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-qr {
    display: flex;
    gap: 20px;
}

.qr-item { text-align: center; }

.qr-item img {
    width: 100px; height: 100px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: var(--white);
    padding: 6px;
}

.qr-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

/* --- 右侧浮动 --- */
.float-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-item {
    position: relative;
    width: 50px; height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s;
}

.float-item:hover {
    background: var(--primary);
    color: var(--white);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    white-space: nowrap;
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.float-item:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

.float-tooltip img {
    
    border-radius: 8px;
    display: block;
}

/* ========================================
   响应式适配
   ======================================== */

@media (max-width: 1200px) {
    .content-layout,
    .content-layout.reverse,
    .news-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .sidebar-box { margin-bottom: 0; }
    .expert-grid-large { grid-template-columns: repeat(2, 1fr); }
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .expert-detail-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .service-grid-large { grid-template-columns: 1fr; }
    .about-gallery,
    .qualification-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .case-card { min-width: calc(33.333% - 16px); }
}

@media (max-width: 992px) {
    .nav-menu,
    .nav-phone { display: none; }
    .mobile-toggle { display: block; }
    .about-inner { grid-template-columns: 1fr; }
    .about-right { order: -1; }
    .case-card { min-width: calc(50% - 12px); }
    .news-inner { grid-template-columns: 1fr; }
    .page-banner { height: 420px; }
    .page-banner-content h1 { font-size: 36px; }
    .banner-content h1 { font-size: 40px; }
    .team-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .page-section { padding: 50px 0; }
    .page-banner { height: 380px; }
    .page-banner-content h1 { font-size: 28px; }
    .services-grid,
    .service-list-grid { grid-template-columns: 1fr; }
    .case-card { min-width: 100%; }
    .case-grid,
    .about-gallery,
    .qualification-grid { grid-template-columns: 1fr; }
    .news-item-large { flex-direction: column; }
    .news-item-large .news-thumb {
        width: 100%; height: 200px;
    }
    .news-bottom { grid-template-columns: 1fr; }
    .article-body { padding: 24px; }
    .process-steps { flex-direction: column; }
    .process-step:not(:last-child)::after { display: none; }
    .sidebar { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .article-nav {
        flex-direction: column;
        gap: 12px;
    }
    .article-nav a { max-width: 100%; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .float-sidebar { display: none; }
    .detail-content { padding: 24px; }
    .expert-detail-layout { padding: 24px; }
    .contact-form-box,
    .contact-info-box { padding: 24px; }
    .banner-content h1 { font-size: 32px; }
    .banner-content h3 { font-size: 18px; }
    .about-stats { gap: 20px; }
    .cases-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .page-banner-content h1 { font-size: 24px; }
    .page-banner-content p { font-size: 15px; }
    .section-header h2,
    .page-title h2 { font-size: 26px; }
    .banner-content {
        left: 5%; right: 5%;
        max-width: none;
    }
    .about-img-float { display: none; }
    .about-badge {
        width: 90px; height: 90px;
        right: -10px;
    }
    .about-badge span:first-child { font-size: 22px; }
    .team-card { width: 260px; }
}