:root {
    --primary: #c10a20;
    --primary-dark: #9e0819;
    --primary-light: #fde8eb;
    --primary-rgb: 193,10,32;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --dark: #0f172a;
    --bg-light: #f8fafc;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --fs-hero: 52px;
    --fs-h1: 38px;
    --fs-h2: 32px;
    --fs-h4: 20px;
    --fs-card-title: 18px;
    --fs-card-sub: 16px;
    --fs-body: 15px;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --lh-heading: 1.2;
    --lh-title: 1.4;
    --lh-card: 1.5;
    --lh-body: 1.7;
    --lh-relaxed: 1.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.header.transparent {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom-color: rgba(193,10,32,0.08);
}

.header.transparent .logo-text {
    color: var(--gray-900);
}

.header.transparent .nav-link {
    color: var(--gray-600);
}

.header.transparent .nav-link:hover {
    color: var(--primary);
    background: rgba(193,10,32,0.06);
}

.header.transparent .nav-link.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(193,10,32,0.25);
}

.header.transparent .search-form {
    background: rgba(0,0,0,0.04);
}

.header.transparent .search-input {
    color: var(--gray-900);
}

.header.transparent .search-input::placeholder {
    color: var(--gray-400);
}

.header.transparent .search-btn {
    color: var(--gray-500);
}

.header.transparent .mobile-menu-btn span {
    background: var(--gray-800);
}

.header.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header.scrolled .logo-text {
    color: var(--gray-900);
}

.header.scrolled .nav-link {
    color: var(--gray-600);
}

.header.scrolled .nav-link.active {
    color: #fff;
    background: var(--primary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), #ff4d6a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px;
    flex-direction: column;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.logo-dot:nth-child(2) {
    align-self: flex-end;
}


.logo-zh {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.logo-en {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 16px;
    background: var(--gray-50);
    border-radius: 14px;
    padding: 4px;
    border: 1px solid var(--gray-200);
}

.nav-link {
    font-size: 17px;
    color: var(--gray-600);
    font-weight: 500;
    position: relative;
    padding: 8px 18px;
    border-radius: 10px;
    transition: var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
}

.nav-link.active {
    color: #fff;
    background: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #7a0614);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: var(--radius-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding-top: 76px;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-slides {
    width: 100%;
}

.hero-slide {
    min-height: 560px;
    width: 100%;
    display: none;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide.active {
    display: flex;
    width: 100%;
}

.hero-slide.active .hero-title {
    animation: heroFadeUp 0.7s ease forwards;
    opacity: 0;
}

.hero-slide.active .hero-subtitle {
    animation: heroFadeUp 0.7s ease 0.12s forwards;
    opacity: 0;
}

.hero-slide.active .hero-desc {
    animation: heroFadeUp 0.7s ease 0.24s forwards;
    opacity: 0;
}

.hero-slide.active .btn-primary {
    animation: heroFadeUp 0.7s ease 0.36s forwards;
    opacity: 0;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Banner Theme: Red ===== */
.hero-slide.hero-red {
    background: linear-gradient(135deg, #1a0508 0%, #3a0a15 40%, #5c1020 70%, #3a0a15 100%);
}

.hero-slide.hero-red .hero-title {
    color: #ffffff;
}

.hero-slide.hero-red .hero-subtitle {
    color: #f9a8b8;
}

.hero-slide.hero-red .hero-desc {
    color: rgba(255,255,255,0.7);
}

.hero-slide.hero-red .hero-particles .hero-particle {
    background: rgba(193,10,32,0.35);
    box-shadow: 0 0 6px rgba(193,10,32,0.25);
}

.hero-slide.hero-red .hero-deco-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-slide.hero-red .hero-deco-line::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(193,10,32,0.2), rgba(245,158,11,0.15), rgba(193,10,32,0.2), transparent);
}

.hero-slide.hero-red .hero-deco-line::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(245,158,11,0.12), rgba(193,10,32,0.18), rgba(245,158,11,0.12), transparent);
}

.hero-slide.hero-red .hero-deco-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(193,10,32,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-red .hero-deco-circle::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(193,10,32,0.12);
}

.hero-slide.hero-red .hero-deco-streak {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to right, transparent, rgba(193,10,32,0.08) 30%, rgba(245,158,11,0.1) 50%, rgba(193,10,32,0.08) 70%, transparent);
}

.hero-slide.hero-red .hero-deco-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-red .hero-deco-corner--tl {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(193,10,32,0.2);
    border-left: 1px solid rgba(193,10,32,0.2);
}

.hero-slide.hero-red .hero-deco-corner--br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(245,158,11,0.15);
    border-right: 1px solid rgba(245,158,11,0.15);
}

/* ===== Banner Theme: Blue ===== */
.hero-slide.hero-blue {
    background: linear-gradient(135deg, #040d1a 0%, #0a1e3a 40%, #0f3460 70%, #0a1e3a 100%);
}

.hero-slide.hero-blue .hero-title {
    color: #ffffff;
}

.hero-slide.hero-blue .hero-subtitle {
    color: #93c5fd;
}

.hero-slide.hero-blue .hero-desc {
    color: rgba(255,255,255,0.7);
}

.hero-slide.hero-blue .hero-particles .hero-particle {
    background: rgba(59,130,246,0.3);
    box-shadow: 0 0 6px rgba(59,130,246,0.2);
}

.hero-slide.hero-blue .hero-deco-wave {
    position: absolute;
    right: -5%;
    top: 20%;
    width: 50%;
    height: 60%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-slide.hero-blue .hero-deco-wave::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59,130,246,0.15), transparent);
}

.hero-slide.hero-blue .hero-deco-wave::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    width: 90%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59,130,246,0.1), transparent);
}

.hero-slide.hero-blue .hero-deco-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-blue .hero-deco-ring::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.1);
}

.hero-slide.hero-blue .hero-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(59,130,246,0.2);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-blue .hero-deco-dot:nth-child(1) { right: 12%; top: 22%; width: 4px; height: 4px; }
.hero-slide.hero-blue .hero-deco-dot:nth-child(2) { right: 30%; top: 72%; width: 3px; height: 3px; }
.hero-slide.hero-blue .hero-deco-dot:nth-child(3) { right: 20%; top: 45%; width: 5px; height: 5px; }

.hero-slide.hero-blue .hero-deco-scan {
    display: none;
}

.hero-slide.hero-blue .hero-deco-grid {
    display: none;
}

.hero-slide.hero-blue .hero-deco-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-blue .hero-deco-corner--tl {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(59,130,246,0.15);
    border-left: 1px solid rgba(59,130,246,0.15);
}

.hero-slide.hero-blue .hero-deco-corner--br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(59,130,246,0.12);
    border-right: 1px solid rgba(59,130,246,0.12);
}

/* ===== Banner Theme: Dark ===== */
.hero-slide.hero-dark {
    background: linear-gradient(135deg, #0a0a12 0%, #12122a 40%, #1a1a3e 70%, #12122a 100%);
}

.hero-slide.hero-dark .hero-title {
    color: #ffffff;
}

.hero-slide.hero-dark .hero-subtitle {
    color: #c4b5fd;
}

.hero-slide.hero-dark .hero-desc {
    color: rgba(255,255,255,0.7);
}

.hero-slide.hero-dark .hero-particles .hero-particle {
    background: rgba(139,92,246,0.3);
    box-shadow: 0 0 6px rgba(139,92,246,0.2);
}

.hero-slide.hero-dark .hero-deco-string {
    position: absolute;
    right: 8%;
    top: 15%;
    bottom: 15%;
    width: 1px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-slide.hero-dark .hero-deco-string::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.15), rgba(139,92,246,0.08), rgba(139,92,246,0.15), transparent);
}

.hero-slide.hero-dark .hero-deco-string::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 40px;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.1), transparent);
}

.hero-slide.hero-dark .hero-deco-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-dark .hero-deco-sparkle {
    position: absolute;
    border-radius: 50%;
    background: rgba(139,92,246,0.25);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-dark .hero-deco-sparkle:nth-child(1) { right: 10%; top: 20%; width: 3px; height: 3px; }
.hero-slide.hero-dark .hero-deco-sparkle:nth-child(2) { right: 28%; top: 66%; width: 2px; height: 2px; }
.hero-slide.hero-dark .hero-deco-sparkle:nth-child(3) { right: 18%; top: 40%; width: 4px; height: 4px; }

.hero-slide.hero-dark .hero-deco-nebula {
    display: none;
}

.hero-slide.hero-dark .hero-deco-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.hero-dark .hero-deco-corner--tl {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(139,92,246,0.15);
    border-left: 1px solid rgba(139,92,246,0.15);
}

.hero-slide.hero-dark .hero-deco-corner--br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(139,92,246,0.12);
    border-right: 1px solid rgba(139,92,246,0.12);
}

/* ===== Hero Particles ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 8%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 22%; width: 5px; height: 5px; animation-duration: 16s; animation-delay: 2s; }
.hero-particle:nth-child(3) { left: 38%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 4s; }
.hero-particle:nth-child(4) { left: 52%; width: 4px; height: 4px; animation-duration: 15s; animation-delay: 1s; }
.hero-particle:nth-child(5) { left: 68%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 3s; }
.hero-particle:nth-child(6) { left: 82%; width: 5px; height: 5px; animation-duration: 17s; animation-delay: 5s; }
.hero-particle:nth-child(7) { left: 14%; width: 3px; height: 3px; animation-duration: 11s; animation-delay: 6s; }
.hero-particle:nth-child(8) { left: 58%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 7s; }

.hero-particles-snow .hero-particle {
    animation-name: particleSnow;
}

.hero-particles-spark .hero-particle {
    animation-name: particleSpark;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

@keyframes particleSnow {
    0% { transform: translateY(-10px) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(100vh) translateX(30px); opacity: 0; }
}

@keyframes particleSpark {
    0%, 100% { transform: scale(0.5); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.9; }
}

/* ===== Hero Background Image ===== */
.hero-overlay {
    display: none;
}

.hero-slide.hero-blue .hero-title {
    text-shadow: 0 0 20px rgba(59,130,246,0.2);
}

.hero-slide.hero-blue .hero-desc {
    color: rgba(255,255,255,0.75);
}

.hero-slide.hero-blue .hero-particles .hero-particle {
    background: rgba(59,130,246,0.5);
    box-shadow: 0 0 6px rgba(59,130,246,0.2);
}

.hero-slide.hero-blue .hero-deco-wave {
    display: none;
}

.hero-slide.has-bg-image {
    position: relative;
}

.hero-slide.has-bg-image .hero-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-slide.has-bg-image .container {
    position: relative;
    z-index: 2;
}

.hero-slide.has-bg-image .hero-title {
    color: #ffffff;
}

.hero-slide.has-bg-image .hero-subtitle,
.hero-slide.has-bg-image .hero-desc {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark-bg .section-title,
.section-dark-bg .section-subtitle {
    color: #ffffff;
}

.section-dark-bg .section-subtitle {
    opacity: 0.9;
}

.section-dark-bg .stat-label {
    color: rgba(255,255,255,0.85);
}

.section-dark-bg .feature-card {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.section-dark-bg .feature-title {
    color: #ffffff;
}

.section-dark-bg .feature-desc {
    color: rgba(255,255,255,0.8);
}

.section-dark-bg .feature-icon {
    color: rgba(255,255,255,0.9);
}

.section-dark-bg .product-card {
    background: rgba(255,255,255,0.95);
}

.section-dark-bg .news-home-left-item a {
    color: #ffffff;
}

.section-dark-bg .news-home-left-item span {
    color: rgba(255,255,255,0.6);
}

.section-dark-bg .news-home-left-title {
    color: #ffffff;
}

.section-dark-bg .news-home-left-more {
    color: rgba(255,255,255,0.7);
}

.section-dark-bg .news-home-rcard {
    background: rgba(255,255,255,0.1);
}

.section-dark-bg .news-home-rcard-title a {
    color: #ffffff;
}

.section-dark-bg .news-home-rcard-summary {
    color: rgba(255,255,255,0.7);
}

.section-dark-bg .news-home-rcard-date {
    color: rgba(255,255,255,0.5);
}

.section-dark-bg .news-home-rcard-tag {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.section-dark-bg .partner-item {
    background: rgba(255,255,255,0.1);
}

.hero-content {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-text {
    width: 100%;
}

.hero-slide.hero-text-left .hero-content {
    text-align: left;
}

.hero-slide.hero-text-center .hero-content {
    text-align: center;
}

.hero-slide.hero-text-right .hero-content {
    text-align: right;
}

.hero-slide .container {
    max-width: 1400px;
}

.hero-slide.hero-text-center .container {
    max-width: 1600px;
}

.hero-slide.hero-text-center .hero-title {
    white-space: normal;
}

.hero-slide.hero-text-right .hero-title {
    white-space: normal;
}


.hero-title {
    font-size: 52px;
    font-weight: 400;
    color: var(--gray-900);
    line-height: var(--lh-heading);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 1px;
    line-height: var(--lh-body);
}

.hero-desc {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: 36px;
    line-height: var(--lh-relaxed);
}



.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}




/* ===== Banner Button Override for Dark Themes ===== */
.hero-slide.hero-red .btn-primary,
.hero-slide.hero-blue .btn-primary,
.hero-slide.hero-dark .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1a0a0e;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
    position: relative;
    overflow: hidden;
}

.hero-slide.hero-red .btn-primary::after,
.hero-slide.hero-blue .btn-primary::after,
.hero-slide.hero-dark .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero-slide.hero-red .btn-primary:hover,
.hero-slide.hero-blue .btn-primary:hover,
.hero-slide.hero-dark .btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 6px 28px rgba(245,158,11,0.5);
    transform: translateY(-2px);
}


/* ===== Particle Effects ===== */
.hero-particles-snow .hero-particle {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: snowFall linear infinite;
}

.hero-particles-snow .hero-particle:nth-child(odd) { width: 4px; height: 4px; }
.hero-particles-snow .hero-particle:nth-child(even) { width: 6px; height: 6px; }
.hero-particles-snow .hero-particle:nth-child(3n) { width: 3px; height: 3px; }

@keyframes snowFall {
    0% { bottom: -10px; opacity: 0; transform: translateX(0) rotate(0deg); }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { bottom: 100%; opacity: 0; transform: translateX(40px) rotate(360deg); }
}

.hero-particles-spark .hero-particle {
    width: 3px;
    height: 3px;
    background: rgba(var(--primary-rgb), 0.5);
    border-radius: 50%;
    animation: sparkBurst ease-in-out infinite;
    box-shadow: 0 0 6px rgba(var(--primary-rgb), 0.3);
}

@keyframes sparkBurst {
    0% { opacity: 0; transform: scale(0) translateY(0); }
    30% { opacity: 1; transform: scale(1.5) translateY(-30px); }
    70% { opacity: 0.6; transform: scale(0.8) translateY(-80px); }
    100% { opacity: 0; transform: scale(0) translateY(-120px); }
}

.hero-particles-float .hero-particle {
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 50%;
    animation: particleRise linear infinite;
}

/* ===== Product Detail Layout ===== */
.pd-top {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 32px;
    border: 1px solid var(--gray-100);
}

.pd-main-img {
    flex: 0 0 480px;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pd-main-img .pd-no-img {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.pd-gallery {
    position: relative;
    width: 100%;
}

.pd-gallery-main {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.pd-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pd-thumb {
    flex: 0 0 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    opacity: 0.6;
}

.pd-thumb:hover {
    opacity: 0.85;
}

.pd-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-gallery-prev,
.pd-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.7);
    color: #374151;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}

.pd-gallery-prev { left: 10px; }
.pd-gallery-next { right: 10px; }

.pd-gallery-prev:hover,
.pd-gallery-next:hover {
    background: rgba(255,255,255,0.9);
    color: #c10a20;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.pd-info {
    flex: 1;
    min-width: 0;
}

.pd-info h1 {
    font-size: 26px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.pd-info-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: var(--lh-relaxed);
    margin-bottom: 24px;
}

.pd-specs {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pd-specs th {
    background: var(--gray-50);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-align: left;
    width: 120px;
    border: 1px solid var(--gray-100);
}

.pd-specs td {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--gray-700);
    border: 1px solid var(--gray-100);
}

.pd-bottom {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 32px;
    border: 1px solid var(--gray-100);
}

.pd-bottom-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.pd-bottom-content {
    font-size: 15px;
    color: var(--gray-600);
    line-height: var(--lh-relaxed);
}

.pd-bottom-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.pd-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: #fef2f2;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
}

.pd-feature-tag::before {
    content: '✓';
    font-size: 11px;
}

/* ===== Stats ===== */
.stats {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 450px;
}

.stats-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.stats-video::-webkit-media-controls {
    display: none !important;
}

.stats-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.stats .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--gray-900);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: var(--lh-title);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
    line-height: var(--lh-body);
}

.stats .section-title,
.stats .section-subtitle {
    color: var(--white);
}

.stats .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== Features ===== */
.features {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: var(--lh-card);
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: var(--lh-body);
}

/* ===== Products ===== */
.products {
    padding: 100px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-illustration img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-illust-icon {
    width: 80px;
    height: 80px;
}

.prod-illust-icon svg {
    width: 100%;
    height: 100%;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: var(--lh-body);
}

/* ===== Service Banner ===== */
.service-banner {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.service-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.service-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--white);
    margin-bottom: 16px;
    line-height: var(--lh-title);
}

.service-desc {
    font-size: var(--fs-card-sub);
    color: rgba(255,255,255,0.85);
    line-height: var(--lh-body);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Partners ===== */
.partners {
    padding: 100px 0;
    background: #ffffff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.partner-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.partner-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.partner-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: 2px;
}

.partners-more {
    text-align: center;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 72px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 4px;
}

.footer-qr {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.qr-placeholder svg {
    width: 80px;
    height: 80px;
}

.qr-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.qr-code-item {
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Page Banner ===== */
.page-banner {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 0;
}

.page-banner::before {
    content: '';
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.6), rgba(var(--primary-rgb),0.4));
    z-index: 1;
}

.page-banner[style*="background-image"]::before {
    display: block;
}

.page-banner[style*="background-image"] .page-banner-title {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.page-banner[style*="background-image"] .page-banner-desc {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),0.2), transparent);
}

.page-banner-title {
    font-size: 38px;
    font-weight: var(--fw-bold);
    color: var(--gray-900);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    position: relative;
    line-height: var(--lh-heading);
}

.page-banner-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb),0.3));
    border-radius: 2px;
    margin: 16px auto 0;
}

.page-banner-desc {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 8px;
}

.page-banner-en {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 8px;
}

/* ===== Product Detail ===== */
.product-detail-section {
    padding: 80px 0;
}


/* ===== Cases ===== */
.cases-section {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.case-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-brand {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-700);
    letter-spacing: 4px;
}

.case-info {
    padding: 28px;
}

.case-info h3 {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: var(--lh-card);
}

.case-info p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: var(--lh-body);
    margin-bottom: 16px;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
}

.case-link:hover {
    gap: 8px;
}

.case-link::after {
    content: '\2192';
}


/* ===== Culture ===== */
.culture-card-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-2xl);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.culture-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb),0.2));
    opacity: 0;
    transition: var(--transition);
}

.culture-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.culture-card-item:hover::before {
    opacity: 1;
}

.culture-card-item h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: var(--lh-card);
}

.culture-card-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: var(--lh-body);
}


/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}


/* ===== Category Sidebar Layout ===== */
.category-sidebar-layout {
    display: flex;
    gap: 32px;
    padding: 60px 0;
}

.category-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-item a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
}

.sidebar-item a:hover,
.sidebar-item.active a {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.category-main {
    flex: 1;
    min-width: 0;
}

/* ===== Download ===== */

.download-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-info {
    flex: 1;
    min-width: 0;
}

.download-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.download-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.download-meta {
    font-size: 12px;
    color: var(--gray-300);
}

/* ===== News Section (Grid Layout) ===== */
.news-section {
    padding: 60px 0;
}

.news-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.news-section-title-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.news-section-en {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-section-title {
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--gray-900);
    line-height: var(--lh-title);
}

.news-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-tab {
    padding: 6px 18px;
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    background: var(--white);
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.news-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.news-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.news-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.news-card--featured .news-card-img {
    width: 45%;
    min-height: 220px;
}

.news-card--featured .news-card-body {
    width: 55%;
}

.news-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-img--placeholder {
    background: var(--gray-100);
}

.news-card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: var(--lh-card);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card-title {
    color: var(--primary);
}

.news-card-summary {
    font-size: 14px;
    color: var(--gray-500);
    line-height: var(--lh-body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
    flex: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-400);
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card-date svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    color: var(--gray-600);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 600;
}

.page-ellipsis {
    padding: 0 8px;
    color: var(--gray-400);
}

/* ===== News Detail (Sidebar Layout) ===== */
.news-detail-section {
    padding: 60px 0;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.news-detail-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.news-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: var(--lh-title);
    margin-bottom: 16px;
}

.news-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.ndm-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ndm-item:first-child {
    color: var(--primary);
    font-weight: 600;
}

.news-detail-body {
    font-size: var(--fs-body);
    color: var(--gray-700);
    line-height: var(--lh-relaxed);
}

.ndb-cover {
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ndb-cover img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.news-detail-body p {
    margin-bottom: 18px;
}

.news-detail-body img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
    color: var(--gray-900);
    margin: 28px 0 12px;
}

.news-detail-body ul,
.news-detail-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.news-detail-body li {
    margin-bottom: 6px;
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.ndn-prev,
.ndn-next {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 48%;
}

.ndn-prev span,
.ndn-next span {
    font-weight: 600;
}

.news-detail-nav a {
    color: var(--primary);
}

.news-detail-nav a:hover {
    text-decoration: underline;
}

/* ===== News Detail Sidebar ===== */
.news-detail-sidebar {
    position: sticky;
    top: 90px;
}

.nds-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.nds-title {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.nds-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nds-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.nds-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nds-item:first-child {
    padding-top: 0;
}

.nds-item:hover .nds-item-title {
    color: var(--primary);
}

.nds-item-img {
    width: 80px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}

.nds-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nds-item-info {
    flex: 1;
    min-width: 0;
}

.nds-item-title {
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: var(--gray-800);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.nds-item-date {
    font-size: 12px;
    color: var(--gray-400);
}


/* ===== Detail Page ===== */
.detail-section {
    padding: 80px 0 60px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.detail-article {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: var(--lh-title);
}

.detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.detail-meta span:first-child {
    color: var(--primary);
    font-weight: 600;
}

.detail-body {
    font-size: 15px;
    color: var(--gray-700);
    line-height: var(--lh-relaxed);
}

.detail-body p {
    margin-bottom: 16px;
}

.detail-body img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: 16px 0;
}

.detail-body h2,
.detail-body h3,
.detail-body h4 {
    color: var(--gray-900);
    margin: 28px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}

.detail-body ul,
.detail-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.detail-body li {
    margin-bottom: 6px;
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
}

.detail-prev,
.detail-next {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 48%;
}

.detail-prev span,
.detail-next span {
    font-weight: 600;
}

.detail-nav a {
    color: var(--primary);
}

.detail-nav a:hover {
    text-decoration: underline;
}

/* ===== Contact ===== */
.contact-section {
    padding: 80px 0;
}

.contact-hero {
    text-align: center;
    margin-bottom: 48px;
}

.contact-hero h2 {
    font-size: 28px;
    font-weight: var(--fw-bold);
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: var(--lh-title);
}

.contact-hero p {
    font-size: 16px;
    color: var(--gray-500);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 32px 24px;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: var(--fs-card-sub);
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: var(--lh-card);
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-news-card {
    background: #fafafa;
    border-radius: var(--radius-2xl);
    padding: 32px;
    border: 1px solid var(--gray-100);
}

.contact-news-card h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    line-height: var(--lh-card);
}

.contact-news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-news-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-decoration: none;
    transition: var(--transition);
}

.contact-news-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contact-news-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    padding: 8px 0;
    border-right: 2px solid var(--primary-light);
}

.contact-news-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.contact-news-month {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 2px;
}

.contact-news-body h4 {
    font-size: var(--fs-card-sub);
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.contact-news-body p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ===== Static Page ===== */
.static-page {
    padding: 80px 0 60px;
}

.static-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px 56px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    max-width: 900px;
    margin: 0 auto;
}

.static-content h2 {
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    line-height: var(--lh-title);
}

.static-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 28px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}

.static-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: var(--lh-relaxed);
    margin-bottom: 16px;
}

.static-content ul,
.static-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.static-content li {
    font-size: var(--fs-body);
    color: var(--gray-700);
    line-height: 2;
    position: relative;
}

.static-content a {
    color: var(--primary);
}

.static-content a:hover {
    text-decoration: underline;
}

.static-content img {
    border-radius: var(--radius-lg);
    margin: 16px 0;
}


.header-search {
    margin-left: 4px;
    flex-shrink: 0;
}

.search-form {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.04);
    transition: background .3s;
}

.search-form:focus-within {
    background: rgba(0,0,0,0.06);
    box-shadow: 0 0 0 2px rgba(193,10,32,0.1);
}

.search-input {
    border: none;
    outline: none;
    padding: 9px 16px;
    font-size: 16px;
    width: 200px;
    background: transparent;
    color: #374151;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: none;
    border: none;
    padding: 9px 14px;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    transition: color .2s;
}

.search-btn:hover {
    color: #c10a20;
}

.search-section {
    margin-bottom: 40px;
}

.search-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.search-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--primary);
}

.search-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.search-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.search-item-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.search-item-body h3 {
    font-size: var(--fs-card-sub);
    font-weight: var(--fw-semibold);
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: var(--lh-card);
}

.search-item-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: var(--lh-body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--gray-400);
}

.search-empty-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.search-empty-hint {
    font-size: 14px;
    color: var(--gray-300);
}

/* ===== Section Header (Unified) ===== */
.list-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.list-section-title-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.list-section-en {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.list-section-title {
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--gray-900);
    line-height: var(--lh-title);
}

/* ===== Download Enhanced ===== */
.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    margin-bottom: 16px;
    transition: var(--transition);
}

.download-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
}


/* ===== Hero Tabs Override ===== */
.hero{padding-bottom:0;overflow:hidden}
.hero-tabs{display:flex;justify-content:center;gap:4px;position:absolute;bottom:15px;left:50%;transform:translateX(-50%);z-index:10;padding:6px 8px;margin:0;background:rgba(255,255,255,0.1);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-radius:10px;box-shadow:0 2px 12px rgba(0,0,0,0.08);max-width:1152px;width:auto}
.hero-tab{display:flex;flex-direction:row;align-items:center;gap:8px;padding:10px 16px;background:transparent;border:none;border-radius:8px;cursor:pointer;font-size:13px;font-weight:500;color:#ffffff;transition:all 0.3s ease;position:relative;flex:1;justify-content:center;max-width:none;min-width:0;box-shadow:none;backdrop-filter:none;-webkit-backdrop-filter:none}
.hero-tab::after{display:none}
.hero-tab:hover{color:#c10a20;background:rgba(255,255,255,0.15);box-shadow:none;transform:none}
.hero-tab.active{color:#c10a20;background:rgba(255,255,255,0.35);border-color:transparent;font-weight:600;box-shadow:0 2px 8px rgba(0,0,0,0.1);transform:none;padding:10px 16px}
.hero-tab-icon{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:6px;background:transparent;color:#ffffff;flex-shrink:0}
.hero-tab-icon svg{width:18px;height:18px}
.hero-tab.active .hero-tab-icon{background:transparent;color:#c10a20}
.hero-tab:hover .hero-tab-icon{color:#c10a20}
.hero-tab-content{display:flex;flex-direction:column;align-items:flex-start;gap:0px;text-align:left}
.hero-tab-text{white-space:nowrap;font-size:13px;font-weight:600;line-height:1.3}
.hero-tab-sub{white-space:nowrap;font-size:10px;font-weight:400;color:rgba(255,255,255,0.6);line-height:1.3}
.hero-tab.active .hero-tab-sub{color:#c10a20}
.hero-tab:hover .hero-tab-sub{color:#c10a20}

.stats{margin-top:24px}
.features,.products,.service-banner,.partners{padding-top:48px;padding-bottom:48px}
.service-banner{margin-top:0}
.pagination{display:flex;justify-content:center;align-items:center;gap:6px;margin-top:32px;padding:16px 0;flex-wrap:wrap}
.pagination .page-btn{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;padding:0 12px;border:1px solid #e5e7eb;border-radius:6px;font-size:14px;color:#374151;text-decoration:none;transition:all .2s;cursor:pointer;background:#fff}
.pagination .page-btn:hover{border-color:#c10a20;color:#c10a20}
.pagination .page-btn.active{background:#c10a20;color:#fff;border-color:#c10a20}
.pagination .page-ellipsis{padding:0 6px;color:#9ca3af}

.news-home{padding:80px 0;background:var(--bg-light)}
.news-home-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:40px}
.news-home-left{background:#fff;border-radius:8px;border:1px solid #eef0f4;overflow:hidden}
.news-home-left-header{display:flex;justify-content:space-between;align-items:center;padding:20px 24px 12px;border-bottom:1px solid #f3f4f6}
.news-home-left-title{font-size:17px;font-weight:var(--fw-semibold);color:#1f2937}
.news-home-left-more{font-size:13px;color:var(--primary);text-decoration:none;transition:color .2s}
.news-home-left-more:hover{color:#a0081a}
.news-home-left-list{padding:8px 24px 16px}
.news-home-left-item{display:flex;justify-content:space-between;align-items:center;padding:13px 0;border-bottom:1px solid #f7f8fa;gap:12px}
.news-home-left-item:last-child{border-bottom:none}
.news-home-left-item a{font-size:14px;color:#374151;line-height:1.6;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none;transition:color .2s}
.news-home-left-item a:hover{color:var(--primary)}
.news-home-left-item span{font-size:12px;color:#9ca3af;white-space:nowrap;flex-shrink:0}
.news-home-right{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.news-home-rcard{border-radius:8px;overflow:hidden;background:#fff;border:1px solid #eef0f4;transition:transform .3s,box-shadow .3s}
.news-home-rcard:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,0.08)}
.news-home-rcard-cover{position:relative;width:100%;height:180px;overflow:hidden}
.news-home-rcard-cover img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.news-home-rcard:hover .news-home-rcard-cover img{transform:scale(1.05)}
.news-home-rcard-body{padding:16px 18px}
.news-home-rcard-tag{display:inline-block;font-size:12px;color:#fff;background:var(--primary);padding:2px 10px;border-radius:3px;margin-bottom:8px}
.news-home-rcard-title{font-size:var(--fs-card-sub);font-weight:var(--fw-semibold);color:#1f2937;line-height:var(--lh-card);margin-bottom:4px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-home-rcard-title a{color:inherit;text-decoration:none;transition:color .2s}
.news-home-rcard-title a:hover{color:var(--primary)}
.news-home-rcard-summary{font-size:13px;color:#6b7280;line-height:1.6;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-home-rcard-date{font-size:12px;color:#9ca3af}

.pd-indicator{display:flex;justify-content:center;gap:8px;padding:12px 0}
.pd-indicator-dot{width:8px;height:8px;border-radius:50%;background:var(--gray-300);cursor:pointer;transition:var(--transition)}
.pd-indicator-dot.active{background:var(--primary);transform:scale(1.2)}
.pd-indicator-dot:hover{background:var(--primary)}

.news-card-view{display:flex;align-items:center;gap:4px;color:var(--gray-400)}
.news-card-view svg{color:var(--primary);flex-shrink:0}
