/* ============================================
   骓驰官网 - 前台样式
   ZhuiChi Official Website - Frontend Styles
   ============================================ */

/* ===== 基础重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e3a5f;
    --primary-light: #e0e7ff;
    --primary-mid: #3b5998;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #059669;
    --danger: #dc2626;
    --info: #2563eb;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --max-width: 1200px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Noto Sans", sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ===== 按钮 ===== */
.btn {
    display: inline-block; padding: 10px 24px; border-radius: var(--radius);
    font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s;
    border: 2px solid transparent; text-align: center; line-height: 1.4;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-success { background: var(--success); color: var(--white); }
.btn-warning { background: var(--warning); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-info { background: var(--info); color: var(--white); }
.btn-sm { padding: 5px 12px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* ===== 导航栏 ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200); transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 90px; }

/* ===== Logo ===== */
.logo {
    display: flex; align-items: center; text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    display: block; width: 210px; height: 74px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: opacity 0.3s, transform 0.3s;
}
.logo:hover .logo-img {
    opacity: 0.9; transform: scale(1.02);
}
.logo-text { font-size: 22px; font-weight: 700; color: var(--gray-900); letter-spacing: 2px; }
.logo-sub { font-size: 11px; color: var(--gray-500); letter-spacing: 1px; }

.nav-list { display: flex; list-style: none; gap: 0; }
.nav-list a {
    display: block; padding: 8px 18px; border-radius: var(--radius);
    color: var(--gray-600); font-size: 15px; font-weight: 500; transition: all var(--transition);
    position: relative;
}
.nav-list a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--primary); border-radius: 2px;
    transition: width var(--transition);
}
.nav-list a:hover, .nav-list a.active {
    color: var(--primary); background: transparent;
}
.nav-list a:hover::after, .nav-list a.active::after {
    width: calc(100% - 36px);
}

.header-actions { display: flex; align-items: center; gap: 16px; }

/* 语言切换 */
.lang-switcher { display: flex; align-items: center; gap: 1px; font-size: 13px; }
.lang-btn { padding: 4px 9px; border-radius: 4px; color: var(--gray-400); transition: all var(--transition); font-weight: 500; }
.lang-btn.active { background: var(--primary); color: var(--white); font-weight: 600; }
.lang-btn:hover:not(.active) { color: var(--primary); background: var(--primary-light); }
.lang-divider { color: var(--gray-300); user-select: none; }

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 1px; transition: all 0.3s; }

.mobile-nav { display: none; position: fixed; top: 90px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 20px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a { display: block; padding: 14px 16px; color: var(--gray-800); font-size: 16px; border-bottom: 1px solid var(--gray-100); font-weight: 500; transition: all var(--transition); }
.mobile-nav a:hover { color: var(--primary); background: var(--primary-light); border-radius: var(--radius); }
.mobile-lang { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.mobile-lang .lang-btn { padding: 8px 18px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 14px; }

/* ===== 主内容 ===== */
.main-content { padding-top: 90px; }

/* ===== Hero ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(165deg, #0f172a 0%, #172554 25%, #1e3a8a 55%, #1e40af 100%);
    color: var(--white); overflow: hidden; padding: 0;
}
/* 背景网格 */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
    position: absolute; border-radius: 50%; opacity: 0.04;
}
.shape-1 {
    width: 800px; height: 800px; background: radial-gradient(circle, #60a5fa, transparent 70%);
    top: -300px; right: -200px; animation: heroFloat1 10s ease-in-out infinite;
}
.shape-2 {
    width: 500px; height: 500px; background: radial-gradient(circle, #a78bfa, transparent 70%);
    bottom: -150px; left: -100px; animation: heroFloat2 12s ease-in-out infinite;
}
.shape-3 { display: none; }
@keyframes heroFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.04); }
}
@keyframes heroFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.06); }
}
.hero-grid-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-wrapper {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    min-height: 100vh; padding: 110px 20px 120px;
}

/* 左侧文案 */
.hero-left { animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 50px;
    padding: 6px 16px; font-size: 13px; font-weight: 500;
    margin-bottom: 28px; letter-spacing: 0.5px; color: rgba(255,255,255,0.9);
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 8px #22c55e;
    animation: badgeBlink 2.5s ease-in-out infinite;
}
@keyframes badgeBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-size: 54px; font-weight: 800; line-height: 1.2;
    margin-bottom: 20px; letter-spacing: 1px;
}
.hero-highlight {
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 20px; opacity: 0.8; margin-bottom: 16px;
    font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.9);
}
.hero-body {
    font-size: 16px; opacity: 0.6; margin-bottom: 40px;
    line-height: 1.8; max-width: 500px; color: rgba(255,255,255,0.7);
}

/* 按钮组 */
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-cta {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border: none; box-shadow: 0 6px 24px rgba(245, 158, 11, 0.35);
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; font-size: 17px; font-weight: 600;
    border-radius: 50px; transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.hero-cta:hover {
    transform: translateY(-3px); color: var(--white);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}
.btn-arrow { transition: transform 0.3s ease; }
.hero-cta:hover .btn-arrow { transform: translateX(5px); }

.btn-ghost {
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 50px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 28px; font-size: 15px; font-weight: 500;
    backdrop-filter: blur(10px); transition: all 0.3s ease;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12); color: var(--white);
    border-color: rgba(255,255,255,0.25); transform: translateY(-2px);
}

/* 信任指标 */
.hero-stats {
    display: flex; gap: 48px; margin-top: 52px; padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { text-align: center; }
.stat-number {
    font-size: 42px; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, #fff, #93c5fd);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-plus {
    font-size: 28px; font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block; font-size: 13px; color: rgba(255,255,255,0.5);
    margin-top: 4px; letter-spacing: 1px; font-weight: 400;
}

/* ===== 右侧效果图展示 ===== */
.hero-right {
    animation: fadeInRight 0.8s ease-out 0.15s both;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-showcase { position: relative; }

/* Hero 右侧核心业务轮播 */
.hero-carousel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-carousel-slide {
    flex: 0 0 100%;
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.hero-slide-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-carousel-slide:hover .hero-slide-image img {
    transform: scale(1.05);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 50%, rgba(15,23,42,0.1) 100%);
    pointer-events: none;
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    z-index: 2;
}

.hero-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #86efac;
    margin-bottom: 12px;
}

.hero-slide-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-slide-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #60a5fa;
    transition: color 0.3s ease;
}

.hero-carousel-slide:hover .hero-slide-link {
    color: #93c5fd;
}

.hero-slide-link svg {
    transition: transform 0.3s ease;
}

.hero-carousel-slide:hover .hero-slide-link svg {
    transform: translateX(4px);
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(15,23,42,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-carousel-btn:hover {
    background: rgba(59,130,246,0.8);
    border-color: rgba(59,130,246,0.5);
}

.hero-carousel-prev { left: 14px; }
.hero-carousel-next { right: 14px; }

.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #60a5fa;
}

/* Hero 回退静态卡片（hero_slides 表为空时） */
.hero-static-services { display: flex; flex-direction: column; gap: 12px; }
.hero-static-card {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
    padding: 16px 20px; color: var(--white); text-decoration: none;
    transition: all var(--transition);
}
.hero-static-card:hover {
    background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3);
    transform: translateX(4px);
}
.hero-static-icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 900; flex-shrink: 0; color: var(--accent);
}
.hero-static-card h3 {
    font-size: 16px; font-weight: 700; margin-bottom: 2px; color: var(--white);
}
.hero-static-card p { font-size: 13px; opacity: 0.7; color: var(--white); }

/* 底部波浪 */
.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 1; line-height: 0;
}
.hero-wave svg {
    width: 100%; height: 120px; display: block;
}

/* ===== Section ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 34px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; letter-spacing: -0.3px; }
.section-header p { font-size: 17px; color: var(--gray-500); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-header::after {
    content: ''; display: block; width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-mid));
    margin: 16px auto 0; border-radius: 2px;
}

/* ===== 卡片 ===== */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--gray-100); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gray-200); }
.card-icon { margin-bottom: 18px; color: var(--primary); }
.card h3 { font-size: 20px; margin-bottom: 8px; color: var(--gray-900); font-weight: 700; }
.card h4 { font-size: 17px; margin-bottom: 8px; color: var(--gray-900); font-weight: 600; }
.card-sub { color: var(--primary-mid); font-size: 14px; font-weight: 500; margin-bottom: 10px; }
.card p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }
.card-body { padding-top: 16px; }

/* 网格 */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== 案例卡片 ===== */
.case-real-img {
    width: 100%; height: 200px; object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: transform 0.5s ease;
}
.case-card { padding: 0; overflow: hidden; position: relative; }
.case-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
    opacity: 0; transition: opacity var(--transition);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.case-card:hover .case-real-img { transform: scale(1.06); }
.case-card:hover::after { opacity: 1; }
.case-card .card-body { padding: 22px 24px; position: relative; z-index: 1; }
.case-card .card-body h4 { font-size: 17px; margin-bottom: 8px; color: var(--gray-800); }
.case-card .card-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== Hero 实物图片 ===== */
.thumb-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.showcase-car-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}


/* ===== 核心能力优势 ===== */
.competence-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.competence-item {
    display: flex; gap: 24px; align-items: flex-start;
    background: var(--white); padding: 32px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.competence-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gray-200); }
.competence-icon { flex-shrink: 0; width: 120px; }
.competence-img {
    width: 100%; height: 90px; object-fit: cover; border-radius: var(--radius);
    transition: transform var(--transition);
}
.competence-item:hover .competence-img { transform: scale(1.04); }
.competence-body h3 { font-size: 18px; margin-bottom: 10px; color: var(--gray-900); font-weight: 700; }
.competence-body p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== 服务页图片展示 ===== */
.service-showcase {
    display: flex; gap: 16px; margin-bottom: 32px;
}
.service-showcase-img {
    flex: 1; max-width: 50%; height: 280px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}
.service-showcase-img:hover { transform: scale(1.03); }

/* ===== 关于页-业务版图 ===== */
.about-image-row {
    display: flex; gap: 20px;
}
.about-row-img {
    flex: 1; max-width: 50%; height: 320px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}
.about-row-img:hover { transform: scale(1.03); }

/* ===== 客户品牌卡片 ===== */
.client-brands-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.client-brand-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 20px; text-align: center; box-shadow: var(--shadow);
    transition: all 0.3s;
}
.client-brand-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.brand-img-wrap {
    width: 100%; height: 140px; overflow: hidden; border-radius: var(--radius);
    margin-bottom: 14px;
}
.brand-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.client-brand-card:hover .brand-img { transform: scale(1.08); }
.client-brand-card h4 { font-size: 16px; margin-bottom: 6px; color: var(--gray-900); }
.client-brand-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== 合作伙伴 ===== */
.partners-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; align-items: center;
}
.partner-item {
    text-align: center; transition: all var(--transition); cursor: default;
    padding: 16px 24px; border-radius: var(--radius-lg);
}
.partner-item:hover {
    background: var(--gray-50);
}
.partner-placeholder {
    width: 72px; height: 72px; border-radius: var(--radius); background: linear-gradient(135deg, var(--primary-light), #e8ecf4);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
    font-size: 28px; font-weight: 700; color: var(--primary-mid);
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.partner-item:hover .partner-placeholder {
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.partner-item span { font-size: 14px; color: var(--gray-600); font-weight: 500; }
.partner-logo-img { width: 72px; height: 72px; object-fit: contain; border-radius: var(--radius); margin: 0 auto 10px; display: block; transition: all var(--transition); }
.partner-item:hover .partner-logo-img { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: var(--white); text-align: center;
    position: relative; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(96,165,250,0.1), transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(167,139,250,0.08), transparent 50%);
    pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }
.cta h2 { font-size: 34px; margin-bottom: 14px; font-weight: 700; }
.cta p { font-size: 17px; opacity: 0.8; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta .btn-primary { background: var(--white); color: var(--primary); font-weight: 600; border: none; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta .btn-primary:hover { background: #f0f4ff; color: var(--primary-dark); box-shadow: 0 8px 30px rgba(0,0,0,0.2); transform: translateY(-2px); }
.cta .btn-outline { border-color: var(--white); color: var(--white); }
.cta .btn-outline:hover { background: var(--white); color: var(--primary); }

/* ===== 页脚 ===== */
.footer {
    background: var(--gray-900); color: var(--gray-400); padding: 64px 0 30px;
    border-top: 3px solid var(--primary-mid);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 44px; align-items: start; }
.footer h3 { color: var(--white); font-size: 20px; margin-bottom: 16px; }
.footer h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; font-weight: 600; letter-spacing: 0.3px; }
.footer p { font-size: 14px; line-height: 1.8; color: var(--gray-400); }
.footer .footer-logo { display: inline-block; margin-bottom: 16px; }
.footer .footer-logo-img { display: block; width: 150px; height: 52px; opacity: 0.9; transition: opacity 0.3s; }
.footer .footer-logo:hover .footer-logo-img { opacity: 1; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--gray-400); font-size: 14px; transition: color var(--transition); }
.footer ul li a:hover { color: var(--white); }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.footer-contact ul li::before { flex: 0 0 20px; text-align: center; }
.footer-contact ul li:nth-child(1)::before { content: "\2709"; }
.footer-contact ul li:nth-child(2)::before { content: "\260E"; }
.footer-contact ul li:nth-child(3)::before { content: "\1F4CD"; }
.footer-qr { margin-top: 20px; }
.footer-qr-text { font-size: 13px; color: var(--gray-400); margin-bottom: 8px; }
.footer-qr-img { width: 100px; height: 100px; object-fit: contain; border-radius: var(--radius); background: var(--white); padding: 4px; }
.footer-lang-btns { display: flex; gap: 8px; }
.footer-lang-btns .lang-btn { padding: 8px 16px; border: 1px solid var(--gray-600); border-radius: var(--radius); color: var(--gray-400); font-size: 13px; }
.footer-lang-btns .lang-btn.active { background: var(--primary-mid); border-color: var(--primary-mid); color: var(--white); }
.footer-lang-btns .lang-btn:hover:not(.active) { border-color: var(--gray-400); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 14px; color: var(--gray-500); }

/* ===== Hero 主图可点击看大图 ===== */
.hero-image-hover { position: relative; cursor: pointer; }
.hero-img-zoom {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(15, 23, 42, 0.45); color: var(--white); opacity: 0; transition: opacity 0.3s ease;
    gap: 8px; font-size: 14px; font-weight: 500; border-radius: 12px;
}
.hero-image-hover:hover .hero-img-zoom { opacity: 1; }

/* ===== 图片灯箱 ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center; padding: 40px;
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox-img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-lg); box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.lightbox-close {
    position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none; color: var(--white); font-size: 32px; line-height: 1;
    cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ===== 案例轮播 ===== */
.cases-carousel-wrapper { position: relative; overflow: hidden; padding: 0 52px; }
.cases-carousel { display: flex; transition: transform 0.5s ease; gap: 24px; }
.cases-carousel .case-card {
    flex: 0 0 auto; padding: 0; overflow: hidden; cursor: pointer; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
}
.cases-carousel .case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.case-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.case-real-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.case-card:hover .case-real-img { transform: scale(1.08); }
.case-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(15,23,42,0.5); opacity: 0; transition: opacity 0.3s ease;
}
.case-card:hover .case-overlay { opacity: 1; }
.case-view-btn {
    background: var(--white); color: var(--primary); padding: 8px 18px; border-radius: 50px;
    font-size: 14px; font-weight: 600; transform: translateY(10px); transition: transform 0.3s ease;
}
.case-card:hover .case-view-btn { transform: translateY(0); }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--white); color: var(--primary); box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: var(--white); box-shadow: var(--shadow-lg); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--gray-300); cursor: pointer; transition: all 0.2s; }
.carousel-dot.active { background: var(--primary); width: 24px; border-radius: 6px; }

/* ===== 案例详情弹窗 ===== */
.case-modal {
    position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.85);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.case-modal.active { opacity: 1; visibility: visible; pointer-events: auto; }
.case-modal-inner {
    background: var(--white); border-radius: var(--radius-xl); max-width: 900px; width: 100%;
    max-height: 90vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.case-modal-close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
    border: none; background: var(--gray-100); color: var(--gray-700); font-size: 24px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.2s;
}
.case-modal-close:hover { background: var(--gray-200); }
.case-modal-grid { display: grid; grid-template-columns: 1.2fr 1fr; }
.case-modal-media { height: 100%; min-height: 320px; }
.case-modal-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.case-modal-body { padding: 40px; }
.case-modal-body h3 { font-size: 22px; margin-bottom: 12px; color: var(--gray-900); }
.case-modal-body p { color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.case-modal-detail { color: var(--gray-600); font-size: 14px; }

/* ===== 响应式轮播调整 ===== */
@media (max-width: 1024px) {
    .cases-carousel-wrapper { padding: 0 44px; }
    .case-modal-grid { grid-template-columns: 1fr; }
    .case-modal-img { border-radius: var(--radius-xl) var(--radius-xl) 0 0; height: 260px; }
    .case-modal-body { padding: 28px; }
}
@media (max-width: 768px) {
.cases-carousel-wrapper { padding: 0 36px; }
.case-real-img { height: 200px; }
.case-modal-img { height: 200px; }
.carousel-btn { width: 36px; height: 36px; }
}

/* ===== 页面 Banner ===== */
.page-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #2d5ab0 50%, #3b82f6 100%);
    color: var(--white); padding: 90px 0 56px; text-align: center;
    position: relative; overflow: hidden;
}
.page-banner::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05), transparent 60%),
                radial-gradient(circle at 20% 70%, rgba(147,197,253,0.08), transparent 60%);
    pointer-events: none;
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: 38px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; }
.page-banner p { font-size: 17px; opacity: 0.75; max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ===== 关于页面 ===== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-text h2 { font-size: 30px; margin-bottom: 16px; }
.about-intro-text .lead { font-size: 18px; color: var(--primary); margin-bottom: 16px; font-weight: 500; }
.about-intro-text p { color: var(--gray-600); line-height: 1.8; }
.about-img-placeholder {
    height: 350px; background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
    border-radius: var(--radius-lg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px; font-size: 64px;
}
.about-img-placeholder p { color: var(--gray-500); font-size: 16px; }
.about-real-img {
    width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* 时间线 */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 36px; display: flex; gap: 24px; align-items: flex-start; }
.timeline-item::before { content: ''; position: absolute; left: -31px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--primary); }
.timeline-year { font-size: 20px; font-weight: 700; color: var(--primary); min-width: 60px; }
.timeline-content h3 { font-size: 18px; margin-bottom: 4px; }
.timeline-content p { color: var(--gray-500); font-size: 14px; }

/* MVV 卡片 */
.mvv-card { text-align: center; padding: 40px 24px; }
.mvv-card .card-icon { font-size: 48px; }

/* 团队 */
.team-avatar {
    width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700; margin: 0 auto 16px;
}
.team-card { text-align: center; }
.team-role { color: var(--primary); font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--gray-500); }

/* ===== 服务页面 ===== */
.tabs { display: flex; gap: 0; margin-bottom: 44px; background: var(--gray-100); padding: 5px; border-radius: 50px; overflow: hidden; }
.tab-btn { flex: 1; text-align: center; padding: 13px 24px; border-radius: 50px; font-weight: 600; color: var(--gray-500); font-size: 15px; transition: all var(--transition); white-space: nowrap; }
.tab-btn.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.tab-btn:hover:not(.active) { color: var(--primary-mid); }
.tab-content h2 { font-size: 30px; margin-bottom: 12px; color: var(--gray-900); }
.tab-content .lead { font-size: 17px; color: var(--gray-500); margin-bottom: 36px; line-height: 1.7; }

/* 工作流程 */
.workflow { display: flex; align-items: flex-start; gap: 12px; }
.workflow-step { flex: 1; text-align: center; position: relative; }
.workflow-num {
    width: 52px; height: 52px; border-radius: 50%; background: var(--primary);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(30,58,138,0.2);
}
.workflow-content h4 { font-size: 16px; margin-bottom: 6px; font-weight: 600; color: var(--gray-800); }
.workflow-content p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.workflow-arrow { font-size: 22px; color: var(--gray-300); padding-top: 16px; font-weight: 300; }

/* ===== 联系我们 ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form-wrap h2, .contact-info-wrap h2 { font-size: 26px; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius);
    font-size: 15px; font-family: inherit; transition: all var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.char-count { display: block; text-align: right; font-size: 12px; color: var(--gray-400); margin-top: 4px; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* 联系信息 */
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; padding: 16px; border-radius: var(--radius); transition: all var(--transition); }
.contact-info-item:hover { background: var(--gray-50); }
.info-icon { font-size: 24px; min-width: 44px; text-align: center; line-height: 1.2; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; font-weight: 600; color: var(--gray-800); }
.contact-info-item p { color: var(--gray-500); font-size: 14px; }
.service-promise { background: var(--gray-50); border-radius: var(--radius-lg); padding: 24px; margin-top: 30px; }
.service-promise h4 { margin-bottom: 12px; font-size: 16px; }
.service-promise ul { list-style: none; }
.service-promise li { padding: 6px 0; color: var(--gray-600); font-size: 14px; }
.service-promise li::before { content: '✓ '; color: var(--success); font-weight: 700; margin-right: 8px; }

/* ===== 留言板 ===== */
.message-layout { display: grid; grid-template-columns: 400px 1fr; gap: 40px; }
.message-form-wrap h3, .message-list-wrap h3 { font-size: 22px; margin-bottom: 20px; }
.message-list { display: flex; flex-direction: column; gap: 16px; }
.message-item { background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow); }
.message-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.message-header strong { color: var(--gray-900); }
.message-header time { font-size: 13px; color: var(--gray-400); }
.message-body { color: var(--gray-600); font-size: 15px; line-height: 1.7; }
.empty-state { padding: 60px 20px; text-align: center; color: var(--gray-400); }

/* 分页 */
.pagination { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 30px; }
.page-btn { padding: 8px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius); color: var(--gray-600); font-size: 14px; }
.page-btn:hover { background: var(--gray-50); }
.page-info { font-size: 14px; color: var(--gray-500); }

/* ===== 新闻列表页 ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-link { text-decoration: none; color: inherit; display: block; }
.news-card-img-wrap { position: relative; height: 200px; overflow: hidden; background: var(--gray-100); }
.news-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img { transform: scale(1.06); }
.news-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 48px; color: var(--gray-300); }
.news-card-category {
    position: absolute; top: 12px; left: 12px; background: var(--primary); color: var(--white); padding: 4px 12px;
    border-radius: 50px; font-size: 12px; font-weight: 600;
}
.news-card-body { padding: 20px; }
.news-card-date { font-size: 13px; color: var(--gray-400); display: block; margin-bottom: 8px; }
.news-card-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-summary { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
.news-card-more { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ===== 新闻详情页 ===== */
.news-back-link { display: inline-block; margin-bottom: 24px; color: var(--primary); font-weight: 600; font-size: 15px; text-decoration: none; }
.news-back-link:hover { text-decoration: underline; }
.news-header { margin-bottom: 32px; }
.news-detail-category { display: inline-block; background: var(--primary); color: var(--white); padding: 4px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.news-detail-title { font-size: 32px; font-weight: 900; color: var(--gray-900); line-height: 1.35; margin-bottom: 12px; }
.news-detail-date { font-size: 15px; color: var(--gray-400); }
.news-detail-cover { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.news-detail-cover-img { width: 100%; max-height: 480px; object-fit: cover; }
.news-detail-content { font-size: 16px; line-height: 1.9; color: var(--gray-700); }
.news-detail-content h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin: 28px 0 12px; }
.news-detail-content p { margin-bottom: 18px; }
.news-detail-content img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }
.share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 18px; transition: all 0.2s; }
.share-btn:hover { background: var(--gray-50); border-color: var(--gray-300); }

/* ===== 首页新闻区块 ===== */
.news-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-home-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.news-home-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-home-card a { text-decoration: none; color: inherit; }
.news-home-img-wrap { position: relative; height: 180px; overflow: hidden; background: var(--gray-100); }
.news-home-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-home-card:hover .news-home-img-wrap img { transform: scale(1.05); }
.news-home-noimg { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 40px; color: var(--gray-300); }
.news-home-tag { position: absolute; top: 10px; left: 10px; background: var(--primary); color: var(--white); padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.news-home-body { padding: 18px; }
.news-home-body time { font-size: 12px; color: var(--gray-400); }
.news-home-body h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin: 8px 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-home-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== 页脚 ICP ===== */
.footer-icp { color: var(--gray-400); font-size: 13px; }

/* ===== 后台新闻表格 ===== */
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { background: var(--gray-50); padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-700); }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table .badge { background: var(--gray-100); color: var(--gray-600); padding: 2px 10px; border-radius: 50px; font-size: 12px; }
.admin-table .btn-danger { color: var(--danger); border-color: var(--danger); }
.admin-table .btn-danger:hover { background: var(--danger); color: var(--white); }

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
    .hero-wrapper { gap: 48px; }
    .hero-title { font-size: 44px; }
}

@media (max-width: 1024px) {
    .hero { min-height: auto; }
    .hero-wrapper {
        grid-template-columns: 1fr; gap: 48px;
        min-height: auto; padding: 130px 20px 140px;
    }
    .hero-right { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
    .hero-left { text-align: center; }
    .hero-body { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; border-top: none; padding-top: 24px; margin-top: 36px; }
    .hero-title { font-size: 38px; }
    .hero-slide-content { padding: 22px 20px 22px; }
    .hero-slide-title { font-size: 20px; }
    .client-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .competence-grid { grid-template-columns: 1fr; }
    .about-image-row { flex-direction: column; }
    .about-row-img { max-width: 100%; height: 240px; }
    .service-showcase { flex-direction: column; }
    .service-showcase-img { max-width: 100%; height: 220px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow { flex-direction: column; }
    .workflow-arrow { transform: rotate(90deg); }
    .message-layout { grid-template-columns: 1fr; }
    .news-home-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-detail-title { font-size: 26px; }
}

@media (max-width: 768px) {
    .logo-img { width: 140px; height: 49px; }
    .footer .footer-logo-img { width: 110px; height: 38px; }
    .header .container { height: 78px; }
    .mobile-nav { top: 78px; }
    .main-content { padding-top: 78px; }
    .hero-wrapper { padding: 100px 16px 120px; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 17px; }
    .hero-body { font-size: 15px; }
    .hero-stats { gap: 28px; }
    .stat-number { font-size: 32px; }
    .stat-plus { font-size: 22px; }
    .hero-cta { padding: 14px 26px; font-size: 15px; }
    .btn-ghost { padding: 14px 22px; font-size: 14px; }
    .hero-slide-content { padding: 18px 16px 18px; }
    .hero-slide-title { font-size: 18px; }
    .hero-slide-desc { font-size: 13px; -webkit-line-clamp: 2; }
    .hero-carousel-btn { width: 34px; height: 34px; }
    .nav-list { display: none; }
    .mobile-menu-btn { display: flex; }
    .section { padding: 56px 0; }
    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 15px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .client-brands-grid { grid-template-columns: 1fr 1fr; }
    .competence-grid { grid-template-columns: 1fr; }
    .competence-item { flex-direction: column; }
    .competence-icon { width: 100%; }
    .competence-img { height: 140px; }
    .about-image-row { flex-direction: column; }
    .about-row-img { max-width: 100%; height: 200px; }
    .service-showcase { flex-direction: column; }
    .service-showcase-img { max-width: 100%; height: 200px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .tabs { flex-wrap: wrap; border-radius: var(--radius-lg); }
    .tab-btn { flex: 1 1 40%; border-radius: var(--radius); }
    .partners-grid { gap: 20px 32px; }
    .page-banner { padding: 80px 0 48px; }
    .page-banner h1 { font-size: 30px; }
    .news-detail-title { font-size: 24px; }
    .news-card-img-wrap { height: 160px; }
    .news-home-grid, .news-grid { grid-template-columns: 1fr; }
    .news-home-img-wrap { height: 180px; }
}
