:root {
    --primary: #1a365d;
    --primary-light: #2a5298;
    --primary-dark: #0f2340;
    --secondary: #4a6fa5;
    --accent: #c59a2e;
    --accent-light: #e0c35a;
    --red: #c0392b;
    --red-light: #e74c3c;
    --bg-light: #f7f8fa;
    --bg-gray: #f0f2f5;
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); touch-action: manipulation; }
a:hover { color: var(--accent); }

.btn { touch-action: manipulation; }

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

/* ========== Header ========== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(26, 54, 93, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(15, 35, 64, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
}

.logo {
    display: flex; align-items: center; gap: 12px;
    color: var(--white); font-size: 1.3rem; font-weight: 700;
    letter-spacing: 0.5px;
}
.logo img { height: 40px; width: 40px; }
.logo:hover { color: var(--white); opacity: 0.9; }
.logo small { display: block; font-size: 0.65rem; font-weight: 400; letter-spacing: 1.5px; color: var(--accent-light); text-transform: uppercase; }

.nav-list { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-list a {
    color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500;
    position: relative; padding: 6px 0;
}
.nav-list a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: width var(--transition);
}
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { width: 100%; }

.nav-cta {
    background: var(--accent); color: var(--white) !important;
    padding: 10px 22px !important; border-radius: 50px; font-weight: 600 !important;
    transition: all var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light); color: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(197,154,46,0.4); }

.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; padding: 4px; }

/* ========== Hero ========== */
.hero {
    position: relative; height: 800px; display: flex; align-items: center;
    text-align: center; color: var(--white); overflow: hidden;
    padding: 140px 20px 100px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('/assets/images/hero/justice-bg.jpg') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(15,35,64,0.92) 0%, rgba(26,54,93,0.78) 50%, rgba(15,35,64,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; }

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.25;
    margin-bottom: 24px; animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 span { color: var(--accent-light); }

.hero p {
    font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 650px;
    margin: 0 auto 40px; line-height: 1.8; animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s 0.45s ease both; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 600;
    border: none; cursor: pointer; transition: all var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(197,154,46,0.4); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.hero-stats {
    display: flex; gap: 48px; justify-content: center; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
    animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2.2rem; font-weight: 800; color: var(--accent-light); }
.hero-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ========== Sections ========== */
.section { padding: 100px 0; }
.section-gray { background: var(--bg-light); }
.section-dark { background: var(--primary-dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block; color: var(--accent); font-size: 0.85rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary-dark); font-weight: 700; }
.section-header p { color: var(--text-light); margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

.divider {
    width: 50px; height: 3px; background: var(--accent);
    margin: 16px auto 0; border-radius: 2px;
}

/* ========== Services ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }

.service-img-placeholder {
    height: 220px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
}
.case-img-placeholder {
    height: 220px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
}

.service-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.service-card-img { position: relative; height: 220px; overflow: hidden; }
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--accent); color: var(--white); padding: 6px 14px;
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 12px; font-weight: 700; }
.service-card-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-card-body .btn { font-size: 0.9rem; }

/* ========== Why Us ========== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.why-card {
    text-align: center; padding: 40px 28px; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.why-icon {
    width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.why-card h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 10px; font-weight: 700; }
.why-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ========== Stats Counter ========== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }

.stat-item { padding: 20px; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; display: inline; }
.stat-plus { font-size: 2rem; color: var(--accent); display: inline; }
.stat-label { color: var(--text-light); font-size: 0.95rem; margin-top: 8px; }

/* ========== Cases ========== */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }

.case-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all var(--transition);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card-img { height: 200px; overflow: hidden; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-card-body { padding: 28px; }
.case-card-body h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 10px; font-weight: 700; }
.case-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.case-tag {
    background: var(--bg-gray); color: var(--primary); padding: 3px 12px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}
.case-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ========== Team Carousel ========== */
.team-carousel-wrapper {
    position: relative; max-width: 1100px; margin: 0 auto;
    padding: 0 50px; overflow: hidden;
}

.team-carousel-track {
    display: flex;
}

.team-carousel-slide {
    flex: 0 0 calc(100% / 4); min-width: calc(100% / 4);
    padding: 0 12px; box-sizing: border-box;
}

.team-card {
    text-align: center; background: var(--white); border-radius: var(--radius);
    padding: 40px 24px; box-shadow: var(--shadow); transition: all var(--transition);
    border: 1px solid transparent; height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.team-avatar {
    width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 20px; border: 4px solid var(--bg-light);
    transition: border-color var(--transition);
}
.team-card:hover .team-avatar { border-color: var(--accent); }

.team-avatar-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.5);
}

.team-card h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 4px; font-weight: 700; }
.team-role { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

.team-carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border);
    background: var(--white); cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.team-carousel-btn:hover { background: var(--accent); border-color: var(--accent); }
.team-carousel-btn:hover span { color: var(--white); }
.team-carousel-btn span {
    font-size: 1rem; color: var(--primary); font-weight: 700;
    transition: color var(--transition);
}
.team-carousel-prev { left: 0; }
.team-carousel-next { right: 0; }

.team-carousel-dots {
    display: flex; justify-content: center; gap: 10px; margin-top: 30px;
}
.team-carousel-dots button {
    width: 10px; height: 10px; border-radius: 50%; border: none;
    background: var(--border); cursor: pointer; padding: 0;
    transition: all var(--transition);
}
.team-carousel-dots button.active { background: var(--accent); width: 28px; border-radius: 5px; }
.team-carousel-dots button:hover { background: var(--accent); opacity: 0.6; }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white); border-radius: var(--radius-sm); margin-bottom: 16px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
    padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 600; color: var(--primary-dark); font-size: 1rem;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon {
    font-size: 1.2rem; color: var(--accent); transition: transform var(--transition);
    flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.4s ease;
    color: var(--text-light); font-size: 0.95rem; line-height: 1.8;
}
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 400px; }

/* ========== Contact ========== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white); padding: 40px; border-radius: var(--radius);
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 30px; font-size: 0.95rem; }

.contact-detail { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-detail p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

.contact-form-card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.3rem; color: var(--primary-dark); margin-bottom: 24px; font-weight: 700; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.88rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
    transition: all var(--transition); background: var(--bg-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(197,154,46,0.12);
    background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }

/* ========== Footer ========== */
.site-footer { background: #0f1a2e; color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-col h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; font-weight: 700; }
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 12px; font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ========== Modal ========== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center; opacity: 0;
    visibility: hidden; transition: all var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
    background: var(--white); border-radius: var(--radius); padding: 40px;
    width: 90%; max-width: 500px; position: relative;
    transform: translateY(20px); transition: transform var(--transition);
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
    position: absolute; top: 16px; right: 16px; background: var(--bg-gray);
    border: none; width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.1rem; cursor: pointer; color: var(--text-light);
    transition: var(--transition);
}
.modal-close:hover { background: var(--red); color: var(--white); }

.modal-box h3 { font-size: 1.3rem; color: var(--primary-dark); margin-bottom: 24px; text-align: center; font-weight: 700; }
.modal-box .form-group { margin-bottom: 16px; }

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
    color: var(--white); border: none; cursor: pointer; font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(197,154,46,0.4); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-light); transform: translateY(-3px); }

/* ========== Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== Page Hero (二级页面顶部) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white); padding: 140px 0 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-bottom: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ========== Section Tag ========== */
.section-tag {
    display: inline-block; background: var(--accent); color: var(--white);
    padding: 5px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.section-bg { background: var(--bg-light); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary-dark); font-weight: 700; }
.section-subtitle { color: var(--text-light); margin-top: 12px; }

/* ========== Buttons Extended ========== */
.btn-white { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0; text-align: center; color: var(--white);
}
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== News Grid (资讯列表) ========== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }

.news-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all var(--transition);
    border: 1px solid var(--border);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.news-thumb {
    position: relative; height: 200px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.news-thumb > i { font-size: 3.5rem; color: rgba(255,255,255,0.2); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-cat {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: var(--accent); color: var(--white); padding: 4px 14px;
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

.news-body { padding: 24px; }
.news-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.5; }
.news-body h3 a { color: var(--primary-dark); font-weight: 700; }
.news-body h3 a:hover { color: var(--accent); }
.news-body > p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }

.news-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); }
.news-meta i { margin-right: 4px; }

/* ========== News Detail (文章详情) ========== */
.news-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }

.news-detail-layout article { min-width: 0; }

.article-header { margin-bottom: 30px; }
.article-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--primary-dark); margin: 12px 0 16px; line-height: 1.4; font-weight: 800; }

.article-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--text-light); font-size: 0.9rem; }
.article-meta i { margin-right: 4px; color: var(--accent); }

.article-cover { margin-bottom: 30px; border-radius: var(--radius); overflow: hidden; }
.article-cover img { width: 100%; max-height: 450px; object-fit: cover; display: block; }

.article-body { color: var(--text); font-size: 1rem; line-height: 2; word-break: break-word; }
.article-body p { margin-bottom: 16px; }
.article-body h2, .article-body h3 { color: var(--primary-dark); margin: 28px 0 14px; font-weight: 700; }
.article-body h2 { font-size: 1.4rem; }
.article-body h3 { font-size: 1.15rem; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 16px 0; }
.article-body ul, .article-body ol { margin: 12px 0 16px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
    border-left: 4px solid var(--accent); background: var(--bg-light);
    padding: 16px 20px; margin: 20px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-light); font-style: italic;
}
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body table { width: 100%; border-collapse: collapse; margin: 16px 0; overflow-x: auto; display: block; }
.article-body th, .article-body td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.article-body th { background: var(--bg-light); font-weight: 600; }

.article-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
.article-tags span { color: var(--text-light); font-size: 0.9rem; }
.article-tags i { color: var(--accent); margin-right: 4px; }

.article-nav { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.article-nav a { flex: 1; min-width: 200px; color: var(--primary); font-weight: 500; transition: var(--transition); }
.article-nav a:hover { color: var(--accent); }
.article-nav a .nav-label { color: var(--text-light); font-size: 0.85rem; display: block; }

/* Sidebar */
.news-detail-layout aside { position: sticky; top: 90px; }

.sidebar-widget {
    background: var(--white); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-sm); margin-bottom: 24px; border: 1px solid var(--border);
}
.sidebar-widget h4 {
    font-size: 1rem; color: var(--primary-dark); font-weight: 700;
    margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent);
}

.sidebar-news { list-style: none; }
.sidebar-news li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-news li:last-child { border-bottom: none; }
.sidebar-news a { color: var(--text); font-size: 0.9rem; font-weight: 500; display: block; line-height: 1.5; }
.sidebar-news a:hover { color: var(--accent); }
.sidebar-news small { color: var(--text-muted); font-size: 0.78rem; display: block; margin-top: 4px; }

.sidebar-hot { list-style: none; counter-reset: hot; }
.sidebar-hot li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-hot li:last-child { border-bottom: none; }
.sidebar-hot .rank {
    width: 24px; height: 24px; border-radius: 4px; background: var(--bg-gray);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700; color: var(--text-light); flex-shrink: 0;
}
.sidebar-hot li:nth-child(1) .rank, .sidebar-hot li:nth-child(2) .rank, .sidebar-hot li:nth-child(3) .rank {
    background: var(--accent); color: var(--white);
}
.sidebar-hot a { color: var(--text); font-size: 0.9rem; font-weight: 500; flex: 1; line-height: 1.4; }
.sidebar-hot a:hover { color: var(--accent); }

/* Sidebar CTA (咨询块) */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.sidebar-cta h4 { color: var(--white); border-color: rgba(255,255,255,0.2); }
.sidebar-cta p { font-size: 0.9rem; margin-bottom: 15px; opacity: 0.9; }

/* ========== About Page ========== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 16px; font-weight: 700; }
.about-text p { color: var(--text-light); line-height: 1.9; margin-bottom: 12px; }
.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius); min-height: 350px; display: flex;
    align-items: center; justify-content: center;
}
.about-image-placeholder i { font-size: 6rem; color: rgba(255,255,255,0.15); }

.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    text-align: center; padding: 36px 20px; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    transition: all var(--transition); border: 1px solid var(--border);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.value-card i { font-size: 2.2rem; color: var(--accent); margin-bottom: 16px; }
.value-card h4 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 8px; font-weight: 700; }
.value-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* ========== Services Detail Page ========== */
.service-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 80px; }

.service-detail-item .service-visual {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius); min-height: 350px; display: flex;
    align-items: center; justify-content: center;
}
.service-detail-item .service-visual i { font-size: 8rem; color: rgba(255,255,255,0.2); }

.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.service-feature-item {
    padding: 8px 12px; background: var(--bg-light); border-radius: 6px;
    font-size: 0.9rem; color: var(--text);
}
.service-feature-item i { color: var(--accent); margin-right: 6px; }

/* ========== Contact Page ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

.contact-info-section { padding: 0; }
.contact-info-section h3 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 24px; font-weight: 700; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon i { font-size: 1.1rem; color: var(--white); }
.contact-info-text h4 { font-size: 0.95rem; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.contact-info-text p { color: var(--text-light); font-size: 0.9rem; }

.contact-form-wrapper {
    background: var(--white); padding: 40px; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form-wrapper h3 { font-size: 1.3rem; color: var(--primary-dark); margin-bottom: 24px; font-weight: 700; }

.map-section { padding: 0; }
.map-placeholder {
    background: var(--bg-gray); padding: 60px 20px; text-align: center;
    color: var(--text-light);
}
.map-placeholder i { font-size: 3rem; color: var(--accent); margin-bottom: 16px; display: block; }

/* ========== Team Page ========== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

.team-grid .team-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all var(--transition); text-align: center;
}
.team-grid .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-grid .team-avatar {
    width: 100%; height: 280px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center; position: relative;
    overflow: hidden;
}
.team-grid .team-avatar i { font-size: 5rem; color: rgba(255,255,255,0.2); }
.team-grid .team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-social-icons {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 40px 20px 16px; display: flex; justify-content: center; gap: 12px;
    opacity: 0; transition: opacity var(--transition);
}
.team-grid .team-card:hover .team-social-icons { opacity: 1; }
.team-social-icons a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: var(--white);
    transition: var(--transition);
}
.team-social-icons a:hover { background: var(--accent); color: var(--white); }

.team-grid .team-info { padding: 24px; }
.team-grid .team-info h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 4px; font-weight: 700; }
.team-grid .team-info .position { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.team-grid .team-info .specialty { color: var(--text-light); font-size: 0.85rem; }

/* Team Detail */
.team-detail { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.team-detail-avatar {
    width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.team-detail-avatar i { font-size: 4rem; color: rgba(255,255,255,0.2); }
.team-detail-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.team-detail-info h2 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 4px; font-weight: 700; }
.team-detail-info .position { color: var(--accent); font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.team-detail-info .meta-item { margin-bottom: 8px; color: var(--text); font-size: 0.9rem; }
.team-detail-info .meta-item strong { color: var(--text); }

/* ========== Not Found (404) ========== */
.not-found { text-align: center; padding: 120px 20px; }
.not-found h2 { font-size: 6rem; color: var(--primary); font-weight: 800; line-height: 1; }
.not-found p { font-size: 1.1rem; color: var(--text-light); margin: 20px 0 30px; }

/* ========== Alerts ========== */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.95rem; }
.alert-success { background: #f0fff4; color: #276749; border: 1px solid #c6f6d5; }
.alert-error { background: #fff5f5; color: #9b2c2c; border: 1px solid #fed7d7; }
.alert i { margin-right: 8px; }

/* ========== Pagination ========== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px;
    font-size: 0.9rem; transition: all var(--transition);
}
.pagination a { color: var(--text); border: 1px solid var(--border); }
.pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--white); font-weight: 600; }
.pagination .dots { color: var(--text-muted); letter-spacing: 2px; }

/* ========== Responsive ========== */

/* Tablet: 769px - 1024px */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .news-detail-layout { grid-template-columns: 1fr 280px; gap: 30px; }
    .news-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .about-image-placeholder { min-height: 260px; }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .service-detail-item { grid-template-columns: 1fr; gap: 30px; }
    .service-detail-item .service-visual { min-height: 250px; }
    .contact-layout { grid-template-columns: 1fr; gap: 30px; }
    .team-detail { grid-template-columns: 160px 1fr; gap: 24px; }
    .team-detail-avatar { width: 160px; height: 160px; }
}

/* Mobile: 481px - 768px */
@media (max-width: 768px) {
    /* Typography */
    html { font-size: 15px; scroll-padding-top: 60px; }

    /* Header & Navigation */
    .header-inner { padding: 10px 0; }
    .logo { font-size: 1.1rem; }
    .logo img { height: 34px; width: 34px; }
    .mobile-toggle { display: block; }
    .nav-list {
        position: fixed; top: 60px; left: 0; width: 100%; max-height: calc(100vh - 60px);
        background: rgba(15, 35, 64, 0.98); backdrop-filter: blur(16px);
        flex-direction: column; gap: 0; padding: 16px; overflow-y: auto;
        transform: translateY(-120%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4); z-index: 999;
    }
    .nav-list.active { transform: translateY(0); }
    .nav-list li { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-list a { display: block; padding: 14px 12px; font-size: 1rem; }
    .nav-cta { text-align: center; margin-top: 8px; border-radius: 8px; }

    /* Hero */
    .hero { height: auto; min-height: 100vh; min-height: calc(var(--vh, 1vh) * 100); padding: 100px 20px 60px; }
    .hero h1 { font-size: 1.7rem; line-height: 1.35; }
    .hero p { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 16px; flex-wrap: wrap; padding-top: 28px; margin-top: 36px; }
    .hero-stat { flex: 1 1 40%; min-width: 120px; }
    .hero-stat .num { font-size: 1.5rem; }
    .hero-stat .label { font-size: 0.75rem; }

    /* Page Hero */
    .page-hero { padding: 100px 20px 40px; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.9rem; }
    .breadcrumb { font-size: 0.8rem; gap: 4px; }

    /* Sections */
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.9rem; }

    /* Services Grid */
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card-img { height: 200px; }
    .service-card-body { padding: 20px; }
    .service-card-body h3 { font-size: 1.1rem; }

    /* Why Us */
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 28px 20px; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 12px; }
    .stat-number { font-size: 2rem; }
    .stat-plus { font-size: 1.4rem; }
    .stat-label { font-size: 0.8rem; }

    /* Cases */
    .cases-grid { grid-template-columns: 1fr; gap: 20px; }
    .case-card-img { height: 180px; }
    .case-card-body { padding: 20px; }

    /* Team Carousel */
    .team-carousel-slide { flex: 0 0 100%; min-width: 100%; }
    .team-carousel-wrapper { padding: 0 36px; }
    .team-carousel-btn { width: 34px; height: 34px; }
    .team-card { padding: 28px 16px; }
    .team-avatar { width: 100px; height: 100px; }

    /* Team Grid */
    .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .team-grid .team-avatar { height: 240px; }
    .team-detail { grid-template-columns: 1fr; text-align: center; }
    .team-detail-avatar { margin: 0 auto; width: 140px; height: 140px; }

    /* FAQ */
    .faq-question { padding: 16px 20px; font-size: 0.95rem; }
    .faq-answer { font-size: 0.9rem; }

    /* Contact */
    .contact-wrapper { grid-template-columns: 1fr; gap: 24px; }
    .contact-info-card { padding: 28px; }
    .contact-form-card { padding: 28px; }
    .contact-info-card h3 { font-size: 1.2rem; }
    .contact-form-card h3 { font-size: 1.2rem; }

    /* Contact Page */
    .contact-layout { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-wrapper { padding: 28px; }
    .contact-info-item { margin-bottom: 16px; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 14px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 16px; }

    /* News Grid */
    .news-grid { grid-template-columns: 1fr; gap: 20px; }
    .news-thumb { height: 180px; }
    .news-body { padding: 18px; }
    .news-body h3 { font-size: 1rem; }

    /* News Detail */
    .news-detail-layout { grid-template-columns: 1fr; gap: 30px; }
    .news-detail-layout aside { position: static; }
    .article-header h1 { font-size: 1.4rem; }
    .article-meta { gap: 12px; font-size: 0.82rem; }
    .article-body { font-size: 0.95rem; line-height: 1.85; }
    .article-body h2 { font-size: 1.2rem; }
    .article-body h3 { font-size: 1.05rem; }
    .article-nav a { min-width: 0; flex: 1 1 100%; }
    .article-body table { font-size: 0.85rem; }
    .article-body th, .article-body td { padding: 8px 10px; }

    /* Sidebar */
    .sidebar-widget { padding: 20px; margin-bottom: 16px; }

    /* About */
    .about-content { grid-template-columns: 1fr; gap: 24px; }
    .about-image-placeholder { min-height: 200px; }
    .about-values { grid-template-columns: 1fr 1fr; gap: 12px; }
    .value-card { padding: 24px 16px; }
    .value-card i { font-size: 1.8rem; }

    /* Services Detail */
    .service-detail-item { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
    .service-detail-item .service-visual { min-height: 200px; }
    .service-features { grid-template-columns: 1fr; }

    /* CTA */
    .cta-section { padding: 50px 20px; }
    .cta-content h2 { font-size: 1.4rem; }
    .cta-content p { font-size: 0.95rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    /* Footer */
    .site-footer { padding: 50px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
    .footer-col h3 { margin-bottom: 12px; font-size: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; font-size: 0.8rem; }

    /* Modal */
    .modal-box { padding: 28px 20px; width: 95%; }
    .modal-box h3 { font-size: 1.15rem; margin-bottom: 18px; }

    /* Back to Top */
    .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }

    /* Not Found */
    .not-found { padding: 80px 20px; }
    .not-found h2 { font-size: 4rem; }

    /* Pagination */
    .pagination { gap: 4px; margin-top: 30px; }
    .pagination a, .pagination span { min-width: 34px; height: 34px; font-size: 0.85rem; }

    /* Map */
    .map-placeholder { padding: 40px 16px; }
    .map-placeholder i { font-size: 2.2rem; }

    /* Buttons on mobile */
    .btn { padding: 12px 24px; font-size: 0.95rem; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .btn-sm { padding: 8px 16px; font-size: 0.85rem; }
}

/* Small Mobile: <= 480px */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 16px; }

    .logo { font-size: 1rem; gap: 8px; }
    .logo img { height: 30px; width: 30px; }
    .logo small { font-size: 0.6rem; }

    .hero { min-height: auto; padding: 90px 16px 50px; }
    .hero h1 { font-size: 1.4rem; }
    .hero p { font-size: 0.88rem; }
    .hero-stats { gap: 10px; }
    .hero-stat { flex: 1 1 45%; }
    .hero-stat .num { font-size: 1.3rem; }
    .hero-stat .label { font-size: 0.7rem; }

    .page-hero { padding: 80px 16px 32px; }
    .page-hero h1 { font-size: 1.3rem; }

    .section { padding: 40px 0; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.3rem; }

    .services-grid { gap: 14px; }
    .service-card-img { height: 160px; }
    .service-card-body { padding: 16px; }
    .service-card-body h3 { font-size: 1rem; }

    .why-card { padding: 20px 14px; }
    .why-icon { width: 56px; height: 56px; font-size: 1.4rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.75rem; }

    .cases-grid { gap: 14px; }
    .case-card-img { height: 150px; }
    .case-card-body { padding: 16px; }

    .team-carousel-wrapper { padding: 0 32px; }
    .team-carousel-btn { width: 30px; height: 30px; }
    .team-avatar { width: 80px; height: 80px; }

    .news-grid { gap: 14px; }
    .news-thumb { height: 160px; }
    .news-body { padding: 14px; }
    .news-meta { gap: 10px; font-size: 0.75rem; }

    .article-header h1 { font-size: 1.2rem; }
    .article-meta { gap: 8px; font-size: 0.78rem; }
    .article-body { font-size: 0.9rem; }

    .about-values { grid-template-columns: 1fr; gap: 10px; }
    .value-card { padding: 20px 14px; }

    .contact-info-card, .contact-form-card { padding: 20px; }
    .contact-form-wrapper { padding: 20px; }
    .contact-detail { gap: 10px; }
    .contact-detail-icon { width: 40px; height: 40px; font-size: 1rem; }

    .footer-grid { gap: 20px; }
    .footer-col h3 { font-size: 0.95rem; }
    .footer-links a, .footer-links li { font-size: 0.85rem; }

    .btn { padding: 12px 20px; font-size: 0.9rem; }
    .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

    .back-to-top { bottom: 12px; right: 12px; width: 36px; height: 36px; }

    .not-found h2 { font-size: 3rem; }
    .not-found p { font-size: 0.95rem; }

    .team-detail-avatar { width: 120px; height: 120px; }

    .service-detail-item .service-visual { min-height: 160px; }
    .service-detail-item .service-visual i { font-size: 5rem; }
}

/* Large Mobile / Landscape: 481px - 768px landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 80px 20px 40px; }
    .nav-list { max-height: 70vh; }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-list a { padding: 14px 16px; }
    .btn { min-height: 44px; }
    .faq-question { min-height: 48px; padding: 16px 20px; }
    .pagination a, .pagination span { min-width: 44px; height: 44px; }

    /* Disable hover effects that don't work on touch */
    .service-card:hover, .case-card:hover, .why-card:hover, .value-card:hover,
    .news-card:hover, .team-card:hover, .team-grid .team-card:hover {
        transform: none;
    }
    .service-card:active, .case-card:active, .why-card:active, .value-card:active,
    .news-card:active, .team-card:active, .team-grid .team-card:active {
        transform: scale(0.98);
    }

    /* Remove hover-only image zoom */
    .service-card:hover .service-card-img img,
    .case-card:hover .case-card-img img,
    .news-card:hover .news-thumb img {
        transform: none;
    }
}