@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F5E6A3;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #D4AF37 100%);
    --black: #0A0A0A;
    --black-light: #141414;
    --black-gray: #1A1A1A;
    --gray: #666666;
    --light-gray: #999999;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 0.2; }
}

@keyframes line-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes shimmer-line {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: var(--black);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.01) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(212, 175, 55, 0.05);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Noto Serif SC', serif;
    position: relative;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(0);
    transition: var(--transition);
}

.logo:hover::before {
    transform: scale(1);
}

.logo i {
    margin-right: 12px;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: var(--transition);
}

.hamburger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links.active {
    display: flex !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 60px 80px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 25% 35%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 65%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 85%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 35%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    gap: 180px;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-bg-circle-1 {
    top: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    animation: pulse-glow 7s ease-in-out infinite;
}

.hero-bg-circle-2 {
    bottom: -15%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    animation: pulse-glow 9s ease-in-out infinite reverse;
}

.hero-bg-circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    animation: pulse-glow 12s ease-in-out infinite;
}

.hero-ring {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 50%;
}

.hero-ring-1 {
    top: 12%;
    left: 5%;
    width: 220px;
    height: 220px;
    animation: rotate-slow 70s linear infinite;
}

.hero-ring-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.hero-ring-1::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-ring-2 {
    bottom: 15%;
    right: 8%;
    width: 160px;
    height: 160px;
    animation: rotate-slow 50s linear infinite reverse;
}

.hero-ring-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.hero-ring-2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.hero-ring-3 {
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 175, 55, 0.04);
    border-radius: 50%;
    animation: rotate-slow 80s linear infinite;
}

.hero-ring-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 50%;
}

.hero-ring-3::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.hero-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ray {
    position: absolute;
    top: -10%;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
    transform-origin: bottom center;
    opacity: 0;
}

.ray-1 {
    left: 10%;
    transform: rotate(-15deg);
    animation: ray-shine 4s ease-in-out infinite;
}

.ray-2 {
    left: 25%;
    transform: rotate(-5deg);
    animation: ray-shine 5s ease-in-out infinite 0.5s;
}

.ray-3 {
    right: 25%;
    transform: rotate(5deg);
    animation: ray-shine 4.5s ease-in-out infinite 1s;
}

.ray-4 {
    right: 10%;
    transform: rotate(15deg);
    animation: ray-shine 5.5s ease-in-out infinite 1.5s;
}

@keyframes ray-shine {
    0%, 100% {
        opacity: 0;
        transform: rotate(var(--rotation)) scaleY(0.5);
    }
    50% {
        opacity: 0.6;
        transform: rotate(var(--rotation)) scaleY(1);
    }
}

.ray-1 { --rotation: -15deg; }
.ray-2 { --rotation: -5deg; }
.ray-3 { --rotation: 5deg; }
.ray-4 { --rotation: 15deg; }

.hero-slash-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.slash {
    position: absolute;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(212, 175, 55, 0) 100%);
    transform: rotate(-15deg);
}

.slash-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 40px;
    animation: slash-glow 8s ease-in-out infinite;
}

.slash-2 {
    top: 20%;
    right: -5%;
    width: 300px;
    height: 30px;
    animation: slash-glow 10s ease-in-out infinite 2s;
    opacity: 0.6;
}

.slash-3 {
    top: 50%;
    right: -8%;
    width: 350px;
    height: 35px;
    animation: slash-glow 9s ease-in-out infinite 4s;
    opacity: 0.5;
}

@keyframes slash-glow {
    0%, 100% {
        opacity: 0;
        transform: rotate(-15deg) scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: rotate(-15deg) scaleX(1.1);
    }
}

.hero-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.smoke {
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
}

.smoke-1 {
    top: 15%;
    left: -5%;
    width: 400px;
    height: 400px;
    animation: smoke-float 15s ease-in-out infinite;
}

.smoke-2 {
    top: 40%;
    left: 5%;
    width: 300px;
    height: 300px;
    animation: smoke-float 18s ease-in-out infinite 5s;
}

.smoke-3 {
    bottom: 10%;
    left: -8%;
    width: 350px;
    height: 350px;
    animation: smoke-float 20s ease-in-out infinite 10s;
}

@keyframes smoke-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
        transform: translateY(-30px) translateX(30px) scale(1.1);
    }
    75% {
        opacity: 0.3;
    }
}

.hero-diagonal-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.03) 20%, 
        rgba(212, 175, 55, 0.08) 50%, 
        rgba(212, 175, 55, 0.03) 80%, 
        transparent 100%);
    clip-path: polygon(100% 0, 100% 100%, 60% 100%, 80% 0);
    pointer-events: none;
}

.hero-corner {
    position: absolute;
    width: 120px;
    height: 120px;
}

.hero-corner-top-left {
    top: 3%;
    left: 3%;
    border-top: 3px solid rgba(212, 175, 55, 0.3);
    border-left: 3px solid rgba(212, 175, 55, 0.3);
}

.hero-corner-top-right {
    top: 3%;
    right: 3%;
    border-top: 3px solid rgba(212, 175, 55, 0.3);
    border-right: 3px solid rgba(212, 175, 55, 0.3);
}

.hero-corner-bottom-left {
    bottom: 3%;
    left: 3%;
    border-bottom: 3px solid rgba(212, 175, 55, 0.3);
    border-left: 3px solid rgba(212, 175, 55, 0.3);
}

.hero-corner-bottom-right {
    bottom: 3%;
    right: 3%;
    border-bottom: 3px solid rgba(212, 175, 55, 0.3);
    border-right: 3px solid rgba(212, 175, 55, 0.3);
}

.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 100%;
}

.hero-line-horizontal-1 {
    top: 25%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: shimmer-line 4s linear infinite;
}

.hero-line-horizontal-2 {
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: shimmer-line 5s linear infinite reverse;
}

.hero-line-vertical-1 {
    left: 15%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: shimmer-line 6s linear infinite;
}

.hero-line-vertical-2 {
    right: 20%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: shimmer-line 7s linear infinite reverse;
}

.hero-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: dot-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hero-dot-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.hero-dot-2 {
    top: 55%;
    right: 12%;
    animation-delay: 0.3s;
}

.hero-dot-3 {
    top: 40%;
    left: 48%;
    animation-delay: 0.6s;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-dot-4 {
    bottom: 30%;
    left: 15%;
    animation-delay: 0.9s;
}

.hero-dot-5 {
    top: 15%;
    right: 30%;
    animation-delay: 1.2s;
}

.hero-dot-6 {
    bottom: 45%;
    right: 40%;
    animation-delay: 1.5s;
    width: 7px;
    height: 7px;
}

.hero-dot-7 {
    top: 70%;
    left: 35%;
    animation-delay: 1.8s;
}

.hero-content {
    flex: 1;
    max-width: 580px;
    z-index: 1;
    text-align: left;
}

.hero-content .subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.hero-content .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--gold-gradient);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 45px;
    max-width: 520px;
    position: relative;
}

.hero-content p::first-letter {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 
        0 6px 30px rgba(212, 175, 55, 0.35),
        0 2px 10px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.45),
        0 5px 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn:active {
    transform: translateY(-3px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.6);
    color: var(--gold);
    box-shadow: 
        inset 0 0 20px rgba(212, 175, 55, 0.05),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-secondary:hover {
    background: var(--gold-gradient);
    color: var(--black);
    border-color: transparent;
    transform: translateY(-6px) scale(1.02);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    animation: float-slow 8s ease-in-out infinite;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: var(--gold-gradient);
    border-radius: 30px;
    opacity: 0.2;
    filter: blur(30px);
    animation: border-flow 4s linear infinite;
    background-size: 200% 200%;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 28px;
    animation: rotate-slow 120s linear infinite;
}

.hero-image-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 500px;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-radius: 18px;
    pointer-events: none;
    animation: pulse-glow 5s ease-in-out infinite;
}

.hero-image img {
    width: 500px;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(212, 175, 55, 0.2),
        inset 0 0 60px rgba(212, 175, 55, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-image:hover img {
    transform: scale(1.05);
    box-shadow:
        0 45px 120px rgba(0, 0, 0, 0.9),
        0 0 100px rgba(212, 175, 55, 0.3),
        inset 0 0 70px rgba(212, 175, 55, 0.05);
}

.hero-image-caption {
    padding-left: 0;
}

.caption-name {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.caption-tagline {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 2px;
}

.hero-image img:hover {
    transform: scale(1.03);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(212, 175, 55, 0.15);
}

.stats {
    padding: 120px 40px;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 30%, #121212 50%, var(--black-light) 70%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    animation: shimmer-line 6s linear infinite;
    background-size: 200% 100%;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    animation: shimmer-line 6s linear infinite reverse;
    background-size: 200% 100%;
}

.stats-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.stats-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Noto Serif SC', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
}



.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.services-preview {
    padding: 120px 40px;
    position: relative;
    background: 
        linear-gradient(180deg, var(--black) 0%, #0a0a0a 30%, #0d0d0d 70%, var(--black) 100%);
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 50%, transparent 70%);
    animation: pulse-glow 12s ease-in-out infinite;
}

.services-preview::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    animation: pulse-glow 15s ease-in-out infinite reverse;
}

.services-preview-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
}

.section-header .subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    padding: 50px 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(212, 175, 55, 0.1),
        inset 0 0 30px rgba(212, 175, 55, 0.02);
}

.service-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.service-card:hover::after {
    transform: scale(2.5);
    opacity: 0.8;
}

.team-preview {
    padding: 100px 40px;
    position: relative;
}

.team-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.team-carousel-container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.team-carousel {
    display: flex;
    animation: scrollLeft var(--scroll-duration, 20s) linear infinite;
    width: max-content;
    gap: 40px;
}

.team-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-distance, -50%));
    }
}

.team-carousel-item {
    flex-shrink: 0;
    width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-carousel-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

.team-carousel-item img {
    width: 100%;
    height: 514px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
}

.team-info .title {
    color: var(--gold);
    font-size: 0.9rem;
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(5px);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.12));
    transform: scale(1.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 0.3;
}

.service-card i {
    font-size: 3rem;
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

.service-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
}

.newsletter {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 50%, var(--gold) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.newsletter p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 22px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
    font-family: 'Noto Sans SC', sans-serif;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.newsletter-form button {
    padding: 22px 50px;
    background: var(--black);
    color: var(--gold);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Noto Sans SC', sans-serif;
}

.newsletter-form button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.news-carousel {
    position: relative;
    margin: 60px 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--black);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.news-articles {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--black) rgba(255, 255, 255, 0.2);
}

.news-articles::-webkit-scrollbar {
    height: 8px;
}

.news-articles::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.news-articles::-webkit-scrollbar-thumb {
    background: var(--black);
    border-radius: 4px;
}

.news-articles::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.news-articles .news-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.news-articles .news-item .news-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.news-articles .news-item .news-meta {
    margin-top: auto;
}

.newsletter-subscribe {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.newsletter-subscribe h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.footer {
    background: var(--black);
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 50px;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
}

.qr-title {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.qr-codes {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: flex-start;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-code img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.qr-code span {
    color: #ffffff;
    font-size: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section h4 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.two-col-grid {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.two-col-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: calc(50% - 15px);
}

.footer-section ul li {
    margin-bottom: 18px;
    line-height: 1.6;
    padding: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-section .contact-item i {
    color: var(--gold);
    width: 22px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.about-hero {
    padding: 200px 40px 150px;
    text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.about-hero h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 100px 40px;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 630px 1fr;
    gap: 80px;
    align-items: stretch;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: var(--gold-gradient);
    border-radius: 25px;
    opacity: 0.1;
    filter: blur(15px);
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text .title {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.about-text h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 40px;
    margin-bottom: 15px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--gold);
    width: 22px;
    font-size: 1.2rem;
}

.education, .experience, .qualifications {
    padding: 100px 40px;
    background: var(--black-light);
    position: relative;
}

.education::before, .experience::before, .qualifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.education h2, .experience h2, .qualifications h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
}

.timeline {
    max-width: 850px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding-left: 140px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -65px;
    top: -8px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
}

.experience-list {
    max-width: 950px;
    margin: 0 auto;
}

.experience-item {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(20, 20, 20, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.experience-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.experience-header h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
}

.experience-date {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.experience-item p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 1rem;
}

.experience-item ul {
    list-style: none;
}

.experience-item li {
    color: rgba(255, 255, 255, 0.75);
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1rem;
}

.experience-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.qualification-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(20, 20, 20, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
}

.qualification-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.qualification-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.qualification-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.qualification-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.services-list {
    padding: 100px 40px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.service-detail {
    display: flex;
    gap: 50px;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 25px;
    padding: 55px;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-detail:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--gold);
}

.service-info h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.service-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-info ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-info li {
    color: rgba(255, 255, 255, 0.65);
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
}

.service-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.team {
    padding: 120px 40px;
    text-align: center;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.team h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.team > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 22px;
    padding: 50px 35px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.member-photo {
    width: 320px;
    height: 427px;
    margin: 0 auto 35px;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.team-member .title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 500;
}

.team-member .description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
}

.team-intro {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
}

.team-intro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.team-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.value-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.value-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.consultation {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.consultation-content {
    position: relative;
    z-index: 1;
}

.consultation h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.consultation p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cases-list {
    padding: 60px 80px;
    background: #0a0a0a;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.case-card {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 16px;
    padding: 40px;
}

.case-header {
    display: flex;
    gap: 15px;
    margin-bottom: 28px;
}

.case-tag {
    padding: 9px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.case-category {
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.2);
}

.case-result {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.case-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.case-no {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
}

.case-content {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
}

.meta-item i {
    color: #d4af37;
    font-size: 1rem;
}

.case-result-section {
    padding-top: 30px;
}

.case-result-section h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.result-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.case-result-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-content {
    padding: 100px 40px;
}

.contact-content .container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
}

.contact-info h2, .contact-form h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item i {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.contact-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-form {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 25px;
    padding: 60px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(10, 10, 10, 0.6);
    color: #fff;
    transition: var(--transition);
    font-family: 'Noto Sans SC', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form button {
    width: 100%;
    padding: 22px;
    font-size: 1.1rem;
}

.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

.success-message i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.success-message p {
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq {
    padding: 100px 40px;
    background: var(--black-light);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.faq h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 70px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(20, 20, 20, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.03);
}

.faq-question span {
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-question i {
    color: var(--gold);
    font-size: 1.3rem;
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    padding: 0 35px 30px;
    max-height: 300px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    font-size: 1.05rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .hero {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-image img {
        width: 400px;
        height: 520px;
    }
    
    .hero-image-inner-glow {
        width: 320px;
        height: 420px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links li {
        margin-left: 1.8rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
        margin-left: 0;
    }
    
    .hero-content .subtitle {
        padding-left: 0;
    }
    
    .hero-content .subtitle::before {
        display: none;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .hero-image-inner-glow {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 40px 25px;
    }
    
    
    .news-articles .news-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }
}

@media (max-width: 900px) {
    /* 导航栏优化 - 移动端友好的菜单 */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.4rem;
        margin-right: 8px;
    }
    
    .logo .site-name {
        font-size: 1.1rem;
    }
    
    .logo .site-slogan {
        font-size: 8px !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 30px;
        border-top: none;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
        padding: 8px;
    }
    
    .hamburger span {
        width: 26px;
        height: 2px;
        background: var(--gold);
        margin: 4px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hero区域优化 - 居中响应式 */
    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 24px 20px;
        gap: 0;
        min-height: auto;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-content {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }

    .hero-content .subtitle {
        padding-left: 0;
        font-size: 0.85rem;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .hero-content .subtitle::before {
        display: none;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
        align-items: center;
    }

    .hero-image-caption {
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 20px;
    }
    
    .hero-image-wrapper::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 20px;
    }
    
    .hero-image-wrapper::after {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* 隐藏装饰性元素，提升性能 */
    .hero-bg-circle, .hero-ring, .hero-corner, .hero-line, .hero-dots, 
    .hero-light-rays, .hero-slash-lights, .hero-smoke, .hero-diagonal-border, 
    .hero-grid, .hero-image-inner-glow {
        display: none;
    }

    /* 移动端caption默认显示 */
    .hero-image-caption {
        opacity: 1;
        transform: none;
        text-align: center;
        padding-left: 0;
        margin-top: 20px;
    }

    .caption-name {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .caption-name::after {
        display: none;
    }

    .caption-tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    /* 关于我们 */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-image img {
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }

    .contact-info p {
        justify-content: center;
    }

    /* 联系表单 */
    .contact-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .contact-item i {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    /* 服务详情 */
    .service-detail {
        flex-direction: column;
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 2.5rem;
    }

    .service-info ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-info h2 {
        font-size: 1.4rem;
    }

    /* 案例卡片 */
    .case-meta {
        flex-direction: column;
        gap: 10px;
    }

    .case-card {
        padding: 30px 20px;
    }

    .case-title {
        font-size: 1.3rem;
    }

    .case-header {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .case-tag {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .cases-list {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* 数据统计 */
    .stats {
        padding: 80px 20px;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 25px 15px;
    }

    /* 服务预览 - 平板双列 */
    .services-preview {
        padding: 80px 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 18px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-card i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.88rem;
    }

    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .section-header .subtitle {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    /* 新闻滚动 */
    .news-articles {
        gap: 20px;
    }
    
    .news-articles .news-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .newsletter {
        padding: 70px 20px;
    }
    
    .newsletter h2 {
        font-size: 1.8rem;
    }
    
    .newsletter p {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 16px 20px;
    }

    /* 团队轮播 */
    .team-carousel {
        gap: 20px;
    }
    
    .team-carousel-item {
        width: 280px;
    }
    
    .team-carousel-item img {
        height: 360px;
    }
    
    .team-info h3 {
        font-size: 1.1rem;
    }
    
    .team-info .title {
        font-size: 0.82rem;
    }
    
    .team-preview {
        padding: 70px 20px;
    }

    /* 团队页成员网格 - 移动端单列，防止横向溢出 */
    .team-members {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member {
        padding: 35px 25px;
    }

    .member-photo {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3 / 4;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    /* Hero区域 - 居中响应式 */
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 100px 24px 40px;
        gap: 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .hero-content .subtitle {
        padding-left: 0;
        justify-content: center;
    }
    
    .hero-content .subtitle::before {
        display: none;
    }
    
    .hero-content p {
        max-width: 100%;
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.75;
    }
    
    .hero-image {
        justify-content: center;
        align-items: center;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 20px;
    }
    
    .hero-image-caption {
        text-align: center;
        display: block;
        opacity: 1;
        max-height: 100px;
        overflow: visible;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Section标题 */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .section-header .subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    /* 统计区 */
    .stats {
        padding: 60px 16px;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* 服务卡片 */
    .services-preview {
        padding: 60px 16px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 18px;
        border-radius: 20px;
    }
    
    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .service-card i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    /* 新闻订阅 */
    .newsletter {
        padding: 60px 16px;
    }
    
    .newsletter h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .newsletter p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .newsletter-form input {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .newsletter-form button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* 页脚优化 - 平板保留2列布局 */
    .footer {
        padding: 50px 16px 25px;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-section {
        flex: 0 0 calc(50% - 20px);
    }
    
    .qr-code img {
        width: 140px;
        height: 140px;
    }
    
    .qr-code span {
        font-size: 13px;
    }

    /* 团队轮播 */
    .team-preview {
        padding: 60px 16px;
    }
    
    .team-carousel {
        gap: 15px;
    }
    
    .team-carousel-item {
        width: 230px;
    }
    
    .team-carousel-item img {
        height: 300px;
    }
    
    .team-info {
        padding: 15px;
    }
    
    .team-info h3 {
        font-size: 1rem;
    }
    
    .team-info .title {
        font-size: 0.78rem;
    }
    
    /* 关于我们页面 */
    .about-hero {
        padding: 140px 16px 80px;
        min-height: auto;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 60px 16px;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-text .title {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .education, .experience, .qualifications {
        padding: 60px 16px;
    }
    
    .education h2, .experience h2, .qualifications h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .timeline-item {
        padding-left: 100px;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    
    .timeline-date {
        left: -50px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .experience-item {
        padding: 30px 20px;
    }
    
    .qualification-card {
        padding: 30px 20px;
    }
    
    /* 联系页面 */
    .contact-content {
        padding: 60px 16px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-item {
        gap: 18px;
        margin-bottom: 30px;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    /* 案例页面 */
    .cases-hero {
        padding: 140px 16px 80px;
    }
    
    .cases-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cases-filters {
        padding: 30px 16px 15px;
    }
    
    .cases-grid-section {
        padding: 60px 16px;
    }
    
    .case-card-inner {
        padding: 30px 20px;
    }
    
    .case-title {
        font-size: 1.2rem;
    }
    
    .cases-preview {
        padding: 60px 16px;
    }
    
    /* FAQ */
    .faq {
        padding: 60px 16px;
    }
    
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 25px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* 案例模态框 */
    .case-modal {
        padding: 10px;
        align-items: flex-end;
    }
    
    .case-modal-content {
        padding: 25px 20px;
        max-height: 90vh;
        border-radius: 15px 15px 0 0;
        margin-bottom: 0;
    }
    
    .case-modal-content h2 {
        font-size: 1.3rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    /* 更小屏幕优化 */
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    /* Logo优化 */
    .logo {
        font-size: 1rem;
    }
    
    .logo i {
        font-size: 1.2rem;
        margin-right: 6px;
    }
    
    .logo .site-name {
        font-size: 0.95rem;
    }
    
    .logo .site-slogan {
        display: none !important;
    }

    /* Hero区域 */
    .hero {
        padding: 80px 12px 30px;
    }

    .hero-content .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 0.88rem;
        margin-bottom: 25px;
        line-height: 1.75;
    }

    .btn {
        padding: 13px 28px;
        font-size: 0.88rem;
        max-width: 240px;
    }
    
    .hero-image img {
        max-width: 240px;
        border-radius: 16px;
    }

    /* Section标题 */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .section-header .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    /* 统计区 - 单列布局 */
    .stats {
        padding: 50px 12px;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 18px 12px;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    /* 服务卡片 - 小屏单列 */
    .services-preview {
        padding: 50px 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .service-card {
        padding: 22px 16px;
        border-radius: 18px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }
    
    .service-card i {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* 新闻 */
    .news-section {
        padding: 50px 12px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-articles {
        gap: 15px;
    }
    
    .news-articles .news-item {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .news-content {
        padding: 18px;
    }
    
    .news-content h3 {
        font-size: 1.05rem;
    }
    
    .news-content p {
        font-size: 0.85rem;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .news-carousel {
        margin: 30px 0;
    }

    /* 订阅 */
    .newsletter {
        padding: 50px 12px;
    }
    
    .newsletter h2 {
        font-size: 1.4rem;
    }
    
    .newsletter p {
        font-size: 0.85rem;
    }
    
    .newsletter-form input {
        padding: 13px 16px;
    }
    
    .newsletter-form button {
        padding: 13px 16px;
    }

    /* 页脚 - 小屏幕单列布局 */
    .footer {
        padding: 40px 12px 20px;
    }
    
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-section {
        width: calc(50% - 10px);
    }
    
    .footer-section:nth-child(3) {
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .qr-code img {
        width: 110px;
        height: 110px;
    }
    
    .qr-code span {
        font-size: 12px;
    }
    
    .footer-section .contact-item {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.82rem;
    }
    
    .footer-section .contact-item i {
        width: 18px;
        font-size: 1rem;
    }
    
    .footer-section .contact-item a,
    .footer-section .contact-item span {
        font-size: 0.82rem;
        word-break: break-all;
    }
    
    .qr-codes {
        gap: 20px;
    }

    /* 团队轮播 */
    .team-preview {
        padding: 50px 12px;
    }
    
    .team-carousel {
        gap: 12px;
    }
    
    .team-carousel-item {
        width: 200px;
    }
    
    .team-carousel-item img {
        height: 260px;
    }
    
    .team-info {
        padding: 12px;
    }
    
    .team-info h3 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .team-info .title {
        font-size: 0.72rem;
    }
    
    /* 关于我们页面 */
    .about-hero {
        padding: 120px 12px 60px;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-hero p {
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 50px 12px;
    }
    
    .about-image img {
        max-width: 260px;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
    }
    
    .about-text .title {
        font-size: 0.88rem;
    }
    
    .about-text p {
        font-size: 0.88rem;
    }
    
    .education, .experience, .qualifications {
        padding: 50px 12px;
    }
    
    .education h2, .experience h2, .qualifications h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-date {
        left: -40px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .experience-item {
        padding: 25px 15px;
    }
    
    .qualification-card {
        padding: 25px 18px;
    }
    
    /* 联系页面 */
    .contact-content {
        padding: 50px 12px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-item p {
        font-size: 0.88rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* 隐私协议复选框 - 增大触控区域 */
    .checkbox-group label {
        min-height: 44px;
        padding: 10px 0;
    }

    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .checkbox-group span {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    /* 案例页面 */
    .cases-hero {
        padding: 120px 12px 60px;
    }
    
    .cases-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cases-hero-content p {
        font-size: 0.9rem;
    }
    
    .cases-filters {
        padding: 25px 12px 12px;
    }
    
    .search-box input {
        padding: 14px 16px 14px 48px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
    }
    
    .cases-grid-section {
        padding: 50px 12px;
    }
    
    .case-card-inner {
        padding: 25px 18px;
    }
    
    .case-title {
        font-size: 1.1rem;
    }
    
    .case-header {
        margin-bottom: 18px;
    }
    
    .cases-preview {
        padding: 50px 12px;
    }
    
    .case-preview-card {
        padding: 25px 18px;
    }
    
    .case-preview-title {
        font-size: 1.1rem;
    }
    
    /* FAQ */
    .faq {
        padding: 50px 12px;
    }
    
    .faq h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 18px;
    }
    
    /* 案例模态框 */
    .case-modal-content {
        padding: 22px 18px;
    }
    
    .case-modal-content h2 {
        font-size: 1.2rem;
    }
    
    .modal-tag {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .modal-content {
        padding: 16px;
    }

    .modal-detail {
        padding: 18px;
    }

    /* 分页按钮 - 移动端紧凑可点 */
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .page-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #pageNumbers .page-btn {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    /* 极小屏幕优化 */
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    /* Hero区域 - 居中优化 */
    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 16px 20px;
        gap: 0;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-content {
        text-align: center;
        margin: 0;
    }

    .hero-image {
        justify-content: center;
        align-items: center;
    }

    .hero-image-caption {
        text-align: center;
        opacity: 1;
        max-height: 100px;
        overflow: visible;
    }

    .hero-content .subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }
    
    .hero-content p {
        font-size: 0.82rem;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .hero-image img {
        max-width: 220px;
    }

    /* Section标题 */
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 0.82rem;
    }

    /* 统计区 */
    .stats {
        padding: 40px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 16px 10px;
    }

    /* 服务卡片 */
    .services-preview {
        padding: 40px 10px;
    }
    
    .service-card {
        padding: 20px 14px;
    }
    
    .service-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .service-card i {
        font-size: 1.4rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.82rem;
    }

    /* 订阅 */
    .newsletter {
        padding: 40px 10px;
    }
    
    .newsletter h2 {
        font-size: 1.2rem;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
    }
    
    .newsletter-form button {
        font-size: 0.9rem;
    }

    /* 团队轮播 */
    .team-preview {
        padding: 40px 10px;
    }
    
    .team-carousel {
        gap: 10px;
    }
    
    .team-carousel-item {
        width: 150px;
    }
    
    .team-carousel-item img {
        height: 200px;
    }
    
    .team-info {
        padding: 10px;
    }
    
    .team-info h3 {
        font-size: 0.88rem;
    }
    
    .team-info .title {
        font-size: 0.68rem;
    }

    /* 页脚 - 小屏优化 */
    .footer {
        padding: 35px 10px 18px;
    }
    
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .footer-section {
        width: calc(50% - 8px);
    }
    
    .footer-section:nth-child(3) {
        width: 100%;
    }
    
    .qr-code img {
        width: 90px;
        height: 90px;
    }
    
    .qr-code span {
        font-size: 11px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-section .contact-item {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .footer-section .contact-item a,
    .footer-section .contact-item span {
        font-size: 0.78rem;
    }
    
    .qr-codes {
        gap: 16px;
    }
    
    /* 联系页面 */
    .contact-form {
        padding: 20px 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    /* 案例 */
    .case-card-inner {
        padding: 22px 16px;
    }
    
    .case-title {
        font-size: 1rem;
    }
    
    .case-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

section.animate-in {
    animation: fade-in-up 0.7s ease-out;
}

.services-preview .service-card {
    opacity: 0;
    animation: fade-in-up 0.6s ease forwards;
}

.services-preview .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-preview .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-preview .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-preview .service-card:nth-child(4) { animation-delay: 0.4s; }


.stats .stat-item {
    opacity: 0;
    animation: fade-in-up 0.6s ease forwards;
}

.stats .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats .stat-item:nth-child(4) { animation-delay: 0.4s; }

.news-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.news-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.news-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-image.no-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    position: relative;
}

.news-image-placeholder::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.placeholder-icon {
    font-family: 'Noto Serif SC', serif;
    font-size: 64px;
    font-weight: 700;
    color: #D4AF37;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    z-index: 1;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.news-content h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: var(--transition);
}

.news-card:hover .news-content h3 {
    color: var(--gold);
}

.news-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.news-meta .category {
    padding: 5px 15px;
    background: var(--black);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-meta .date {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

.news-meta .read-more {
    color: var(--gold);
    font-weight: 500;
    transition: var(--transition);
}

.news-meta .read-more:hover {
    color: var(--gold-light);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.page-btn {
    padding: 14px 28px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.cases-hero {
    padding: 180px 40px 120px;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.cases-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.cases-hero-ring {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: rotate-slow 60s linear infinite;
}

.cases-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cases-hero-content .subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cases-hero-content h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cases-hero-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.cases-filters {
    padding: 40px 40px 20px;
    background: var(--black);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.search-box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.clear-btn {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.1);
}

.search-stats {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.search-stats strong {
    color: var(--gold);
}

.cases-grid-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1600px;
    margin: 0 auto;
}

.case-card {
    width: 100%;
    perspective: 1000px;
}

.case-card-inner {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    padding: 45px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover .case-card-inner {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.08);
}

.case-card:hover .case-card-inner::before {
    transform: scaleX(1);
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.case-tags {
    display: flex;
    gap: 12px;
}

.case-tag {
    padding: 9px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.case-category {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.2);
}

.case-result {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.case-badge {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 1.2rem;
}

.case-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-no {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-family: 'Courier New', monospace;
    margin-bottom: 20px;
}

.case-content {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 30px;
}

.case-meta {
    display: flex;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--gold);
    font-size: 1rem;
}

.case-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.case-modal.active {
    display: flex;
}

.case-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.case-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    animation: modalFadeIn 0.3s ease-out;
    z-index: 1001;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    outline: none;
    -webkit-appearance: none;
    pointer-events: auto;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-tags {
    display: flex;
    gap: 12px;
}

.modal-tag {
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.modal-tag.modal-result {
    background: rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.4);
    color: #66bb6a;
}

.modal-tag.modal-result:contains('不起诉') {
    background: rgba(156, 39, 176, 0.15);
    border-color: rgba(156, 39, 176, 0.4);
    color: #ab47bc;
}

.case-modal-content h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.modal-no {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.modal-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.modal-detail {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-detail .detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}

.modal-detail #modalDetailContent {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.modal-detail #modalDetailContent p {
    margin-bottom: 15px;
}

.modal-detail #modalDetailContent p:last-child {
    margin-bottom: 0;
}

.modal-detail #modalDetailContent strong {
    color: var(--gold);
    font-weight: 600;
}

.case-modal-content .modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 25px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.modal-meta-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.modal-highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-highlight .highlight-label {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.modal-highlight .highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.modal-highlight .highlight-list li {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.case-highlight {
    background: rgba(212, 175, 55, 0.03);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-list li {
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.case-read-more {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    border-radius: 12px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.case-read-more:hover {
    background: var(--gold-gradient);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.case-read-more::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

@media (max-width: 900px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-card-inner {
        padding: 35px 25px;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .highlight-list {
        flex-direction: column;
    }
    
    .cases-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-box-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .cases-preview-grid {
        grid-template-columns: 1fr;
    }
}

.cases-preview {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--black-light) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.cases-preview-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

.cases-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.case-preview-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 22px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.06);
}

.case-preview-card:hover::before {
    transform: scaleX(1);
}

.case-preview-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.case-preview-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.case-preview-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-preview-content {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.case-preview-meta {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-preview-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.case-preview-meta i {
    color: var(--gold);
    font-size: 0.9rem;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 14px;
    color: #ccc;
}

.checkbox-group a {
    color: #ffd700;
    text-decoration: underline;
}

/*===================================================================
  移动端覆盖修正块
  说明：以下基础定义（cases-preview-grid / news-grid / case-modal /
  checkbox-group 等）原本位于媒体查询之后，导致移动端覆盖失效。
  此块置于文件末尾，重新强制移动端规则，确保生效。
===================================================================*/

@media (max-width: 900px) {
    .cases-preview-grid,
    .news-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    /* 成功案例预览区 */
    .cases-preview {
        padding: 60px 16px;
    }

    /* 案例详情弹窗 - 移动端居中卡片模式 */
    .case-modal {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px 10px;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: transparent;
        box-sizing: border-box;
    }

    .case-modal-overlay {
        display: block !important;
        background: rgba(0, 0, 0, 0.72);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .case-modal-content {
        margin: 0 auto;
        padding: 28px 18px 16px 18px;
        max-width: calc(100% - 20px);
        width: auto;
        max-height: 88vh;
        min-height: auto;
        height: auto;
        border-radius: 14px;
        animation: none;
        transform: none !important;
        overflow-y: auto;
        overflow-wrap: break-word;
        word-break: break-word;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .modal-header {
        margin-bottom: 10px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .modal-tags {
        gap: 8px;
        max-width: 100%;
        flex-wrap: wrap;
        box-sizing: border-box;
    }

    .case-modal-content h2 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    .case-modal-content h2,
    .modal-content,
    .modal-detail,
    .modal-meta {
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    .modal-no {
        display: none;
    }

    .modal-content {
        padding: 12px 14px;
        margin-bottom: 12px;
        line-height: 1.55;
        font-size: 0.86rem;
        box-sizing: border-box;
    }

    .modal-detail {
        padding: 12px;
        margin-bottom: 12px;
        box-sizing: border-box;
    }

    .modal-detail #modalDetailContent {
        box-sizing: border-box;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .case-modal-content .modal-meta {
        gap: 10px;
        padding-bottom: 12px;
        padding-right: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 0;
        flex-wrap: wrap;
        max-width: 100%;
        box-sizing: border-box;
    }

    .modal-meta-item {
        gap: 5px;
        font-size: 0.8rem;
        box-sizing: border-box;
        min-width: 0;
    }

    .modal-meta-item i {
        font-size: 0.88rem;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        background: rgba(212, 175, 55, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.35);
    }
}

@media (max-width: 600px) {
    .cases-preview {
        padding: 50px 12px;
    }

    .case-preview-card {
        padding: 25px 18px;
    }

    .case-preview-tags,
    .case-preview-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .case-modal {
        padding: 20px 8px;
    }

    .case-modal-content {
        padding: 26px 16px 14px 16px;
        border-radius: 12px;
        max-height: 90vh;
        max-width: calc(100% - 16px);
        width: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .case-modal-content h2 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .modal-header {
        margin-bottom: 8px;
    }

    .modal-tags {
        gap: 6px;
    }

    .modal-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .modal-no {
        display: none;
    }

    .modal-content {
        padding: 10px 12px;
        margin-bottom: 10px;
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .modal-detail {
        padding: 10px;
        margin-bottom: 10px;
    }

    .case-modal-content .modal-meta {
        gap: 8px;
        padding-bottom: 10px;
    }

    .modal-meta-item {
        font-size: 0.78rem;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    /* 隐私协议复选框触控区（重新强制，防止被末尾基础定义覆盖） */
    .checkbox-group label {
        min-height: 44px;
        padding: 10px 0;
    }

    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .checkbox-group span {
        font-size: 0.88rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .case-preview-card {
        padding: 22px 16px;
    }

    .case-modal {
        padding: 20px 6px;
    }

    .case-modal-content {
        padding: 24px 12px 12px 12px;
        border-radius: 10px;
        max-height: 92vh;
        max-width: calc(100% - 12px);
        width: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .case-modal-content h2 {
        font-size: 0.98rem;
        margin-bottom: 5px;
    }

    .modal-header {
        margin-bottom: 6px;
    }

    .modal-tags {
        gap: 5px;
    }

    .modal-tag {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .modal-no {
        display: none;
    }

    .modal-content {
        padding: 8px 10px;
        margin-bottom: 8px;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .modal-detail {
        padding: 8px;
        margin-bottom: 8px;
    }

    .case-modal-content .modal-meta {
        gap: 6px;
        padding-bottom: 8px;
    }

    .modal-meta-item {
        font-size: 0.75rem;
    }

    .modal-close {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* ===== 移动端案例卡片强制覆盖（防止被前面媒体查询/基础定义覆盖） ===== */
@media (max-width: 768px) {
    /* === 案例卡片容器 === */
    .case-card-inner {
        padding: 28px 20px !important;
        border-radius: 16px !important;
    }

    /* === 案例卡片头部：改为自然流式布局，避免space-between挤压 === */
    .case-card-header {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 16px !important;
    }

    /* === 标签容器：支持换行，缩小间距 === */
    .case-tags {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 0 !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .case-tag {
        padding: 5px 12px !important;
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
        white-space: nowrap !important;
    }

    /* === 徽章：缩小尺寸，与标签自然排列 === */
    .case-badge {
        width: 36px !important;
        height: 36px !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    /* === 案例详情模态框 - 标签容器支持换行 === */
    .modal-tags {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 10px !important;
    }

    .modal-tag {
        padding: 4px 10px !important;
        font-size: 0.72rem !important;
        line-height: 1.4 !important;
        margin-bottom: 4px !important;
    }

    /* === 案例预览卡片 - 标签容器支持换行 === */
    .case-preview-tags {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
    }

    .case-preview-tags .case-tag {
        padding: 5px 12px !important;
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
        white-space: nowrap !important;
    }

    /* === 案例标题 === */
    .case-title {
        word-break: break-word !important;
        font-size: 1.15rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }

    /* === 案例副信息（如法院） === */
    .case-no {
        font-size: 0.82rem !important;
        margin-bottom: 12px !important;
    }

    /* === 案例正文摘要 === */
    .case-content {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        margin-bottom: 16px !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* === 案例元信息区 === */
    .case-meta {
        flex-direction: column !important;
        gap: 10px !important;
        padding-bottom: 16px !important;
        margin-bottom: 16px !important;
    }

    .meta-item {
        font-size: 0.8rem !important;
        gap: 8px !important;
    }

    /* === 查看详情按钮 === */
    .case-read-more {
        padding: 16px 20px !important;
        font-size: 0.92rem !important;
        border-radius: 10px !important;
        gap: 8px !important;
    }

    /* === 案例预览卡片标题 === */
    .case-preview-title {
        word-break: break-word !important;
        font-size: 1.12rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }

    .case-preview-content {
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        margin-bottom: 14px !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .case-preview-meta {
        flex-wrap: wrap !important;
        gap: 12px !important;
        padding-top: 14px !important;
    }

    .case-preview-meta span {
        font-size: 0.8rem !important;
    }

    /* === 案例详情模态框 === */
    .case-modal-content h2 {
        margin-top: 6px !important;
        font-size: 1.08rem !important;
        line-height: 1.55 !important;
        word-break: break-word !important;
    }

    .modal-no {
        display: none !important;
    }

    .modal-content {
        padding: 12px 14px !important;
        margin-bottom: 12px !important;
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .modal-detail {
        padding: 12px !important;
        margin-bottom: 12px !important;
    }

    .case-modal-content .modal-meta {
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding-bottom: 12px !important;
    }

    .modal-meta-item {
        font-size: 0.75rem !important;
        flex-shrink: 0 !important;
    }
}

/* ===== 移动端案例卡片宽度优化 ===== */
@media (max-width: 768px) {
    /* 案例列表区域 - 减小左右外边距，让卡片更宽 */
    .cases-grid-section {
        padding: 40px 8px !important;
    }

    /* 案例区域容器 - 减小内边距 */
    .cases-grid-section .container {
        padding: 0 4px !important;
        max-width: 100% !important;
    }

    /* 案例卡片 - 移除 max-width 限制 */
    .case-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 案例卡片内部 - 稍微增加 padding */
    .case-card-inner {
        padding: 30px 22px !important;
        border-radius: 18px !important;
    }
}

/* ===== Hero图片标题：悬停显示，横线与文字等宽 ===== */
.hero-image {
    flex: 1.1;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
}

.hero-image-caption {
    display: block;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    text-align: center;
    width: 100%;
    max-height: 0;
    overflow: hidden;
}

.hero-image:hover .hero-image-caption {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.caption-name {
    display: inline-block;
    position: relative;
}

.caption-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover .caption-name::after {
    width: 100%;
}

/* ===== 案例详情弹窗：专业排版与章节样式 ===== */

/* 案例标题：金色标题 + 金色左侧装饰线 */
.case-modal-content > h2 {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px !important;
    font-family: 'Noto Sans SC', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.65rem !important;
    color: var(--gold) !important;
    line-height: 1.4 !important;
    letter-spacing: 0.8px;
}

.case-modal-content > h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* 摘要区块：左侧金色装饰线 + 专业字体 */
.modal-content {
    font-family: 'Noto Sans SC', sans-serif !important;
    font-size: 0.98rem !important;
    line-height: 2 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 400;
    letter-spacing: 0.2px;
    word-break: break-word;
    background: rgba(212, 175, 55, 0.04) !important;
    border-left: 3px solid var(--gold) !important;
}

/* 详情区块：统一无衬线字体 */
.modal-detail {
    font-family: 'Noto Sans SC', sans-serif !important;
}

/* detail 容器内 h2 章节标题：统一视觉标识 */
#modalDetailContent h2 {
    font-family: 'Noto Sans SC', sans-serif !important;
    font-size: 1.25rem !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
    margin: 28px 0 14px 0 !important;
    padding: 10px 0 10px 18px !important;
    position: relative !important;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0) 100%) !important;
    border-left: 3px solid var(--gold) !important;
    border-radius: 2px 8px 8px 2px;
    letter-spacing: 0.8px;
    line-height: 1.45 !important;
    text-transform: none;
}

#modalDetailContent h2:first-child {
    margin-top: 0 !important;
}

/* 章节内正文段落 */
#modalDetailContent p {
    font-family: 'Noto Sans SC', sans-serif !important;
    margin-bottom: 14px !important;
    line-height: 1.95 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    text-indent: 0;
    font-size: 0.95rem !important;
}

#modalDetailContent p:last-child {
    margin-bottom: 0 !important;
}

/* 章节编号/强调样式 */
#modalDetailContent strong {
    font-family: 'Noto Sans SC', sans-serif !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
}

/* 列表样式 */
#modalDetailContent ol,
#modalDetailContent ul {
    font-family: 'Noto Sans SC', sans-serif !important;
    padding-left: 22px !important;
    margin: 10px 0 16px 0 !important;
}

#modalDetailContent li {
    font-family: 'Noto Sans SC', sans-serif !important;
    margin-bottom: 8px !important;
    line-height: 1.85 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    padding-left: 4px;
    list-style-type: disc;
    font-size: 0.95rem !important;
}

#modalDetailContent li::marker {
    color: var(--gold);
}

/* 标签与案件结果视觉区分 */
.modal-tag.modal-result,
.modal-tag.modal-category {
    font-family: 'Noto Sans SC', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Meta 信息字体 */
.modal-meta-item {
    font-family: 'Noto Sans SC', sans-serif !important;
}

.modal-meta-item span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* 案例卡片结果标签 */
.case-tag {
    font-family: 'Noto Sans SC', sans-serif !important;
    font-weight: 500;
}

.case-tag.case-result {
    font-weight: 600;
}

/* 案例标题字体 - 统一金色 */
.case-title {
    font-family: 'Noto Sans SC', sans-serif !important;
    font-weight: 700;
    color: var(--gold) !important;
}

/* 案例摘要文字 */
.case-content {
    font-family: 'Noto Sans SC', sans-serif !important;
    font-weight: 400;
    line-height: 1.8;
}

/* 案例卡片 meta */
.case-meta,
.case-meta .meta-item {
    font-family: 'Noto Sans SC', sans-serif !important;
}

/* ===== 结果标签四色区分（弹窗 + 列表卡片通用） ===== */
.modal-tag.modal-result.result-ok,
.case-tag.case-result.result-ok {
    background: rgba(46, 125, 50, 0.15) !important;
    border-color: rgba(46, 125, 50, 0.5) !important;
    color: #81c784 !important;
}

.modal-tag.modal-result.result-info,
.case-tag.case-result.result-info {
    background: rgba(25, 118, 210, 0.13) !important;
    border-color: rgba(25, 118, 210, 0.45) !important;
    color: #64b5f6 !important;
}

.modal-tag.modal-result.result-special,
.case-tag.case-result.result-special {
    background: rgba(156, 39, 176, 0.15) !important;
    border-color: rgba(156, 39, 176, 0.5) !important;
    color: #ce93d8 !important;
}

.modal-tag.modal-result.result-warn,
.case-tag.case-result.result-warn {
    background: rgba(237, 108, 2, 0.15) !important;
    border-color: rgba(237, 108, 2, 0.5) !important;
    color: #ffb74d !important;
}
