/* ================================================================
   Belief - Premium Diesel Cooking Stove Brand
   Comprehensive Stylesheet
   ================================================================ */

/* ========== 1. CSS VARIABLES ========== */
:root {
    --primary: #D97706;
    --primary-dark: #B45309;
    --primary-light: #FEF3C7;
    --accent: #F59E0B;
    --accent-light: #FDE68A;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;

    --dark: #111827;
    --dark-card: #1F2937;
    --dark-border: #374151;

    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    --border: #E5E7EB;
    --bg-light: #F9FAFB;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(217, 119, 6, 0.4);
    --shadow-glow-lg: 0 0 40px rgba(217, 119, 6, 0.3);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1200px;
    --container-wide: 1400px;
    --section-padding: 100px;
    --section-padding-sm: 60px;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ========== 2. BASE STYLES ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--primary-dark); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--gray-900);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* 文字选中：高对比度，浅色/深色背景均清晰可读 */
::selection {
    background-color: #B45309;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: none;
}
::-moz-selection {
    background-color: #B45309;
    color: #ffffff;
    text-shadow: none;
}
/* 深色区块内选中：略亮一些的琥珀底，白字 */
.dark-section ::selection,
.cta-section ::selection,
.page-hero ::selection,
.home-hero-section ::selection,
.site-footer ::selection,
.navbar-transparent ::selection {
    background-color: #F59E0B;
    color: #111827;
    -webkit-text-fill-color: #111827;
}
.dark-section ::-moz-selection,
.cta-section ::-moz-selection,
.page-hero ::-moz-selection,
.home-hero-section ::-moz-selection,
.site-footer ::-moz-selection,
.navbar-transparent ::-moz-selection {
    background-color: #F59E0B;
    color: #111827;
}

/* ========== 3. NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}
.navbar-transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
}
.navbar-transparent.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto; padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--gray-900);
    flex-shrink: 0;
}
.brand-logo {
    width: 40px; height: 40px;
    object-fit: contain;
}
.brand-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(217, 119, 6, 0.3));
}
.brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.brand-text {
    font-size: 22px; font-weight: 800; letter-spacing: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-transparent .brand-text {
    background: linear-gradient(135deg, #fff 0%, #FDE68A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-transparent.scrolled .brand-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Search */
.nav-search {
    flex: 1;
    max-width: 500px;
    min-width: 200px;
    position: relative;
}
.nav-search-form {
    display: flex; align-items: center;
    background: var(--gray-100); border-radius: var(--radius-full);
    border: 1px solid var(--gray-200); overflow: hidden;
    transition: all 0.3s;
}
.nav-search-form:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}
.nav-search-form input {
    flex: 1; padding: 10px 20px; border: none; outline: none;
    background: transparent; font-size: 14px; color: var(--gray-900);
    min-width: 100px;
}
.nav-search-form button {
    padding: 10px 20px; background: none; border: none;
    color: var(--gray-500); cursor: pointer; transition: color 0.2s;
    flex-shrink: 0;
}
.nav-search-form button:hover { color: var(--primary); }
.nav-search-form button svg { width: 18px; height: 18px; display: block; }

/* Nav Menu */
.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px; color: var(--gray-600); text-decoration: none;
    border-radius: var(--radius-full); font-size: 14px; font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: rgba(217, 119, 6, 0.05); }
.nav-link.active { color: var(--primary); background: rgba(217, 119, 6, 0.1); font-weight: 600; }

.navbar-transparent .nav-link { color: rgba(255,255,255,0.8); }
.navbar-transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar-transparent .nav-link.active { color: var(--white); background: rgba(255,255,255,0.15); }
.navbar-transparent.scrolled .nav-link { color: var(--gray-600); }
.navbar-transparent.scrolled .nav-link:hover { color: var(--primary); background: rgba(217, 119, 6, 0.05); }
.navbar-transparent.scrolled .nav-link.active { color: var(--primary); background: rgba(217, 119, 6, 0.1); }

/* Nav Buttons */
.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}
.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
    border: none;
}
.nav-btn-primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    transform: translateY(-1px);
    color: var(--white) !important;
}
.nav-btn-outline {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}
.nav-btn-outline:hover {
    background: rgba(217, 119, 6, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}
.nav-btn-outline.active {
    background: rgba(217, 119, 6, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer; gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.mobile-menu-btn:hover { background: var(--gray-100); }
.mobile-menu-btn span {
    display: block; width: 20px; height: 2px;
    background: var(--gray-700); border-radius: 2px;
    transition: all 0.3s;
}
.navbar-transparent .mobile-menu-btn span { background: var(--white); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    animation: fadeIn 0.2s ease;
}
.mobile-menu.show { display: block; }
.mobile-menu .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
}
.mobile-menu .nav-link:hover { background: var(--gray-50); }
.mobile-menu .nav-link.active { color: var(--primary); background: rgba(217, 119, 6, 0.05); }

/* ========== 4. AUTOCOMPLETE DROPDOWN ========== */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    z-index: 1001;
    display: none;
    max-height: 420px;
    overflow-y: auto;
}
.autocomplete-dropdown.show { display: block; }
.ac-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--gray-100);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.ac-active { background: var(--gray-50); }
.ac-item-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-400);
    margin-top: 2px;
}
.ac-item-icon svg { width: 16px; height: 16px; }
.ac-item-text { flex: 1; min-width: 0; }
.ac-item-title {
    font-size: 14px; font-weight: 500; color: var(--gray-800);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.4;
}
.ac-item-title em { color: var(--primary); font-style: normal; font-weight: 600; }
.ac-item-desc {
    font-size: 12px; color: var(--gray-400);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-top: 2px; line-height: 1.3;
}
.ac-item-url {
    font-size: 11px; color: var(--success);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px;
}
.ac-footer {
    padding: 8px 16px;
    text-align: center;
    font-size: 12px; color: var(--gray-400);
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
    border-radius: 0 0 16px 16px;
}
.ac-loading { padding: 16px; text-align: center; color: var(--gray-400); font-size: 13px; }

.home-search .autocomplete-dropdown {
    background: #1e293b;
    border-color: #374151;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.home-search .ac-item { border-bottom-color: #374151; }
.home-search .ac-item:hover, .home-search .ac-item.ac-active { background: #374151; }
.home-search .ac-item-icon { background: #374151; color: #9CA3AF; }
.home-search .ac-item-title { color: #e5e7eb; }
.home-search .ac-item-title em { color: var(--primary); }
.home-search .ac-item-desc { color: #6B7280; }
.home-search .ac-item-url { color: #10b981; }
.home-search .ac-footer { background: #111827; border-top-color: #374151; color: #6B7280; }

/* ========== 5. BACKGROUND TASK TRACKER ========== */
.bg-task-tracker {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 360px;
    background: #1F2937;
    border: 1px solid #374151;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    z-index: 9999;
    overflow: hidden;
    display: none;
    animation: slideUpIn 0.3s ease;
}
@keyframes slideUpIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.bg-task-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #374151;
}
.bg-task-header-left {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #e5e7eb;
}
.bg-task-header-left .pulse-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.bg-task-close {
    background: none; border: none; color: #6B7280;
    cursor: pointer; padding: 4px; border-radius: 4px;
    transition: all 0.2s; line-height: 1; font-size: 18px;
}
.bg-task-close:hover { color: #e5e7eb; background: #374151; }
.bg-task-body { padding: 16px; }
.bg-task-keyword {
    font-size: 13px; color: #9CA3AF;
    margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bg-task-keyword span { color: var(--accent); font-weight: 500; }
.bg-task-progress-bar {
    height: 8px; background: #374151;
    border-radius: 4px; overflow: hidden; margin-bottom: 8px;
}
.bg-task-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}
.bg-task-progress-text {
    font-size: 13px; color: #9CA3AF;
    text-align: center; margin-bottom: 12px;
}
.bg-task-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bg-task-stat { display: flex; justify-content: space-between; font-size: 12px; padding: 4px 0; }
.bg-task-stat .label { color: #6B7280; }
.bg-task-stat .value { font-weight: 600; }
.bg-task-stat .value.success { color: #10b981; }
.bg-task-stat .value.fail { color: #ef4444; }
.bg-task-stat .value.pending { color: #f59e0b; }
.bg-task-stat .value.total { color: var(--accent); }
.bg-task-status {
    margin-top: 12px; padding: 8px 12px;
    border-radius: 8px; font-size: 12px; font-weight: 500; text-align: center;
}
.bg-task-status.running { background: rgba(217, 119, 6, 0.1); color: var(--primary); }
.bg-task-status.completed { background: rgba(16,185,129,0.1); color: #10b981; }
.bg-task-status.failed { background: rgba(239,68,68,0.1); color: #ef4444; }
.bg-task-status.stopped { background: rgba(245,158,11,0.1); color: #f59e0b; }

/* ========== 6. NAV DROPDOWN MENUS ========== */
.nav-dropdown-wrapper { position: relative; }
.nav-dropdown-trigger { gap: 4px; }
.nav-dropdown-arrow { transition: transform 0.2s; }
.nav-dropdown-wrapper:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%; transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 1001;
    padding: 8px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    display: block; opacity: 1; visibility: visible;
}
.nav-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    color: var(--gray-700); text-decoration: none;
    font-size: 14px; transition: all 0.2s;
}
.nav-dropdown-item:hover { background: var(--gray-50); color: var(--primary); }
.nav-dropdown-item .item-icon { font-size: 16px; }
.nav-dropdown-item .item-text { flex: 1; }
.nav-dropdown-item .item-count {
    font-size: 12px; padding: 2px 8px;
    background: var(--gray-100); border-radius: var(--radius-full); color: var(--gray-500);
}
.nav-dropdown-divider { height: 1px; background: var(--gray-100); margin: 6px 0; }

.navbar-transparent .nav-dropdown-menu,
.page-home .nav-dropdown-menu {
    background: rgba(17, 24, 39, 0.95);
    border-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.navbar-transparent .nav-dropdown-item,
.page-home .nav-dropdown-item { color: rgba(255,255,255,0.8); }
.navbar-transparent .nav-dropdown-item:hover,
.page-home .nav-dropdown-item:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.navbar-transparent .nav-dropdown-item .item-count,
.page-home .nav-dropdown-item .item-count { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.navbar-transparent .nav-dropdown-divider,
.page-home .nav-dropdown-divider { background: rgba(255,255,255,0.1); }

/* ========== 7. ARTICLES MENU ========== */
.articles-menu { position: relative; }
.articles-btn {
    display: inline-flex; align-items: center; gap: 4px;
    cursor: pointer; font-family: inherit;
    background: transparent; height: 36px; padding: 0 18px;
}
.articles-arrow { transition: transform 0.2s; }
.articles-menu.show .articles-arrow { transform: rotate(180deg); }
.articles-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%; transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 1001; padding: 8px;
}
.articles-menu.show .articles-dropdown { display: block; }
.articles-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    color: var(--gray-700); text-decoration: none;
    font-size: 14px; transition: all 0.2s;
}
.articles-dropdown-item:hover,
.articles-dropdown-item.active { background: var(--gray-50); color: var(--primary); }
.articles-dropdown-item .item-icon { font-size: 16px; }
.articles-dropdown-item .item-text { flex: 1; }
.articles-dropdown-item .item-count {
    font-size: 12px; padding: 2px 8px;
    background: var(--gray-100); border-radius: var(--radius-full); color: var(--gray-500);
}
.articles-dropdown-divider { height: 1px; background: var(--gray-100); margin: 6px 0; }

.navbar-transparent .articles-dropdown,
.page-home .articles-dropdown {
    background: rgba(17, 24, 39, 0.95);
    border-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.navbar-transparent .articles-dropdown-item,
.page-home .articles-dropdown-item { color: rgba(255,255,255,0.8); }
.navbar-transparent .articles-dropdown-item:hover,
.navbar-transparent .articles-dropdown-item.active,
.page-home .articles-dropdown-item:hover,
.page-home .articles-dropdown-item.active { background: rgba(255,255,255,0.1); color: var(--white); }
.navbar-transparent .articles-dropdown-item .item-count,
.page-home .articles-dropdown-item .item-count { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.navbar-transparent .articles-dropdown-divider,
.page-home .articles-dropdown-divider { background: rgba(255,255,255,0.1); }

/* ========== 8. SYSTEM MENU ========== */
.system-menu { position: relative; }
.system-btn { display: inline-flex; align-items: center; gap: 4px; }
.system-arrow { transition: transform 0.2s; }
.system-menu.show .system-arrow { transform: rotate(180deg); }
.system-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%; transform: translateX(-50%);
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px; z-index: 100;
}
.system-menu.show .system-dropdown { display: block; }
.system-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; border-radius: 8px;
    font-size: 14px; color: var(--gray-700);
    text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.system-dropdown-item:hover { background: var(--gray-50); color: var(--primary); text-decoration: none; }
.system-dropdown-item.active { color: var(--primary); font-weight: 600; }
.system-dropdown-item .item-icon { font-size: 16px; }
.system-dropdown-item .item-text { flex: 1; }
.system-dropdown-divider { height: 1px; background: var(--gray-100); margin: 4px 8px; }

.navbar-transparent .system-dropdown,
.page-home .system-dropdown {
    background: rgba(17, 24, 39, 0.95);
    border-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.navbar-transparent .system-dropdown-item,
.page-home .system-dropdown-item { color: rgba(255,255,255,0.8); }
.navbar-transparent .system-dropdown-item:hover,
.page-home .system-dropdown-item:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.navbar-transparent .system-dropdown-divider,
.page-home .system-dropdown-divider { background: rgba(255,255,255,0.1); }

/* Transparent navbar buttons */
.navbar-transparent .nav-btn-primary,
.page-home .nav-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
}
.navbar-transparent .nav-btn-primary:hover,
.page-home .nav-btn-primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.5);
}
.navbar-transparent .nav-btn-outline,
.page-home .nav-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}
.navbar-transparent .nav-btn-outline:hover,
.page-home .nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}
.navbar-transparent .nav-btn-outline.active,
.page-home .nav-btn-outline.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* ========== 9. LANGUAGE SWITCHER ========== */
.lang-switcher {
    position: relative; flex-shrink: 0; display: inline-block;
}
.lang-btn {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center; gap: 6px;
    height: 36px; padding: 0 12px;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    color: var(--gray-600); font-size: 13px;
    cursor: pointer; transition: all 0.2s;
    white-space: nowrap; box-sizing: border-box;
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.navbar-transparent .lang-btn,
.page-home .lang-btn {
    border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
}
.navbar-transparent .lang-btn:hover,
.page-home .lang-btn:hover {
    border-color: rgba(255,255,255,0.5); color: var(--white);
}
.lang-flag { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.lang-current { max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
.lang-arrow { transition: transform 0.2s; width: 12px; height: 12px; }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px); right: 0;
    min-width: 200px; max-height: 400px; overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}
.lang-dropdown::-webkit-scrollbar { width: 6px; }
.lang-dropdown::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.lang-dropdown::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.lang-dropdown::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }
.lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; color: var(--gray-700);
    text-decoration: none; transition: background 0.2s;
}
.lang-option:hover { background: var(--gray-50); color: var(--primary); }
.lang-option.active { background: var(--primary-light); color: var(--primary); }
.lang-option .lang-flag { width: 24px; height: 18px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.lang-native { font-weight: 500; font-size: 14px; }

/* ========== 10. USER MENU ========== */
.user-menu { position: relative; flex-shrink: 0; display: inline-block; }
.user-btn {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center; gap: 6px;
    height: 36px; padding: 0 12px 0 4px;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    color: var(--gray-700); font-size: 13px;
    cursor: pointer; transition: all 0.2s;
    white-space: nowrap; box-sizing: border-box;
}
.user-btn:hover { border-color: var(--primary); background: rgba(217, 119, 6, 0.05); }
.page-home .user-btn, .navbar-transparent .user-btn {
    border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9);
}
.page-home .user-btn:hover, .navbar-transparent .user-btn:hover {
    border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1);
}
.user-avatar {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; color: #fff; flex-shrink: 0;
}
.user-name {
    font-weight: 500; max-width: 80px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.user-arrow {
    transition: transform 0.2s; color: var(--gray-400);
    width: 12px; height: 12px; flex-shrink: 0;
}
.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px); right: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001; overflow: hidden;
}
.user-dropdown-header {
    padding: 16px; background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.user-dropdown-header .name {
    font-weight: 600; color: var(--gray-900);
    display: flex; align-items: center; gap: 8px;
}
.user-dropdown-header .role { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.admin-badge, .vip-badge {
    display: inline-block; padding: 2px 8px;
    border-radius: 10px; font-size: 10px; font-weight: 500;
}
.admin-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}
.vip-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    color: #fff;
}
.user-dropdown-menu { padding: 8px 0; }
.user-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; color: var(--gray-700);
    text-decoration: none; transition: all 0.2s;
}
.user-dropdown-item:hover { background: var(--gray-50); color: var(--primary); }
.user-dropdown-item svg { width: 18px; height: 18px; color: var(--gray-400); }
.user-dropdown-item:hover svg { color: var(--primary); }
.user-dropdown-item.logout { color: #dc2626; }
.user-dropdown-item.logout:hover { background: #fef2f2; }
.user-dropdown-item.logout svg { color: #dc2626; }
.user-dropdown-divider { height: 1px; background: var(--gray-200); margin: 8px 0; }

/* ========== 11. HOMEPAGE ========== */
.page-home {
    /* No overflow hidden, no color white - just let normal flow work */
}
.page-home .navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-home .navbar.navbar-scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-home .navbar .brand-text { color: #fff; }
.page-home .navbar .nav-link { color: rgba(255,255,255,0.75); }
.page-home .navbar .nav-link:hover,
.page-home .navbar .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.page-home .navbar .lang-btn { color: rgba(255,255,255,0.75); }
.page-home .navbar .articles-btn { color: rgba(255,255,255,0.75); }
.page-home .navbar .mobile-menu-btn span { background: #fff; }

.no-navbar .navbar { display: none; }
.no-navbar .footer { display: none; }

.home-main { position: relative; }

/* Hero Section */
.home-hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background: #05080c;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg .hero-image {
    position: absolute; inset: 0;
    background-image: url('../images/beijing.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.01);
}
.hero-bg .hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 13, 0.9) 0%, rgba(2, 8, 13, 0.7) 34%, rgba(2, 8, 13, 0.16) 64%, rgba(2, 8, 13, 0.44) 100%),
        linear-gradient(180deg, rgba(2, 8, 13, 0.36) 0%, rgba(2, 8, 13, 0.08) 42%, rgba(2, 8, 13, 0.72) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 3;
    width: min(100%, var(--container-wide));
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 38px;
    text-align: left;
    padding: 112px 72px 36px;
    margin: 0 auto;
}
.hero-copy {
    align-self: center;
    max-width: 560px;
}
.hero-badge {
    display: inline-flex; align-items: center; min-height: 34px;
    padding: 7px 20px;
    background: rgba(4, 10, 15, 0.36); color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.78);
    border-radius: 100px; font-size: 14px; font-weight: 700;
    letter-spacing: 0; margin-bottom: 24px;
    box-shadow: 0 0 22px rgba(245, 158, 11, 0.12);
}
.hero-title {
    font-size: clamp(3rem, 5.7vw, 5.25rem);
    font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 24px;
    letter-spacing: 0;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}
.hero-title-line {
    display: block;
}
.hero-title-line-main { color: #fff; }
.hero-title-line-accent { color: #F59E0B; }
.hero-title .hero-title-line:only-child {
    max-width: 720px;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.24rem);
    color: rgba(255, 255, 255, 0.78); max-width: 560px;
    margin: 0 0 34px; line-height: 1.9;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.hero-cta-group {
    display: flex; gap: 16px; justify-content: flex-start;
    flex-wrap: wrap; margin-bottom: 0;
}
.hero-cta-group .btn {
    min-height: 54px;
    border-radius: 8px;
}
.hero-cta-group .btn-primary {
    background: #F59E0B;
    color: #fff;
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.22);
}
.hero-cta-group .btn-primary:hover {
    background: #D97706;
}
.hero-demo-btn {
    color: rgba(255, 255, 255, 0.86);
    border-color: rgba(245, 158, 11, 0.75);
    background: rgba(4, 10, 15, 0.28);
}
.hero-demo-btn:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: #F59E0B;
}
.hero-stats-bar {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    padding: 22px 22px;
    background: rgba(9, 14, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero-stat-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 2px 28px;
    text-align: left;
}
.hero-stat-item + .hero-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}
.hero-stat-icon {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #F59E0B;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
}
.hero-stat-icon svg {
    width: 27px;
    height: 27px;
}
.hero-stat-value,
.hero-stat-item .hero-stat-num {
    font-size: clamp(1.95rem, 3.3vw, 3rem);
    font-weight: 900;
    color: #F59E0B;
    display: inline;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}
.hero-stat-item .hero-stat-text {
    display: block;
    min-width: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 6px;
    line-height: 1.35;
}
@media (max-width: 1180px) {
    .hero-content {
        padding: 104px 40px 32px;
    }
    .hero-copy {
        max-width: 520px;
    }
    .hero-stats-bar {
        padding: 18px 14px;
    }
    .hero-stat-item {
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 13px;
        padding: 2px 18px;
    }
    .hero-stat-icon {
        width: 48px;
        height: 48px;
    }
    .hero-stat-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 920px) {
    .hero-bg .hero-image {
        background-position: 60% center;
    }
    .hero-bg .hero-overlay {
        background:
            linear-gradient(90deg, rgba(2, 8, 13, 0.92) 0%, rgba(2, 8, 13, 0.68) 48%, rgba(2, 8, 13, 0.28) 100%),
            linear-gradient(180deg, rgba(2, 8, 13, 0.38) 0%, rgba(2, 8, 13, 0.12) 42%, rgba(2, 8, 13, 0.78) 100%);
    }
    .hero-content {
        gap: 28px;
    }
    .hero-stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-stat-item {
        padding: 14px 18px;
    }
    .hero-stat-item + .hero-stat-item {
        border-left: 0;
    }
    .hero-stat-item:nth-child(2n) {
        border-left: 1px solid rgba(255, 255, 255, 0.13);
    }
    .hero-stat-item:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }
}

/* Sections */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: rgba(217,119,6,0.1); color: #D97706;
    border-radius: 100px; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-tag.light { background: rgba(217,119,6,0.2); color: #F59E0B; }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: #111827; line-height: 1.2; margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-title.text-center { text-align: center; }
.section-subtitle {
    font-size: 1.1rem; color: #6B7280;
    max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.section-subtitle.light { color: #9CA3AF; }
.dark-section { background: #111827; padding: 100px 0; }
.alt-bg { background: #F9FAFB; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
    transition: all 0.3s ease; border: none; cursor: pointer; text-decoration: none; line-height: 1.4;
    font-family: var(--font-main);
}
.btn-primary { background: #D97706; color: #fff; }
.btn-primary:hover { background: #B45309; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217,119,6,0.35); }
.btn-outline { background: transparent; color: #D97706; border: 2px solid #D97706; }
.btn-outline:hover { background: #D97706; color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* Additional Button Variants */
.btn-default {
    background: var(--white); border: 1px solid var(--gray-300); color: var(--gray-700);
}
.btn-default:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--gray-900); }
.btn-secondary {
    background: var(--dark);
    color: var(--white) !important;
}
.btn-secondary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    padding: 10px 16px;
}
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }
.btn-success { background: var(--success); color: var(--white); box-shadow: 0 2px 4px rgba(16,185,129,0.3); }
.btn-success:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-rounded { border-radius: var(--radius-full); }
.btn-icon {
    width: 40px; height: 40px;
    padding: 0;
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
}

/* Feature Cards */
.features-preview-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    padding: 72px 0 48px;
    background: #fff8ef url('../images/2p.webp') center top / cover no-repeat;
}
.features-preview-section .container {
    position: relative;
    z-index: 1;
    max-width: 1624px;
}
.features-preview-section .section-header {
    margin-bottom: 20px;
}
.features-preview-section .section-tag {
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    border-radius: 100px;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}
.features-preview-section .section-title {
    color: #111827;
    font-size: clamp(2.45rem, 4vw, 3.35rem);
    line-height: 1.12;
    margin-bottom: 22px;
}
.features-preview-section .section-title::after {
    content: '';
    display: block;
    width: 42px;
    height: 4px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: #F59E0B;
}
.features-preview-section .section-subtitle {
    color: #5F6B7A;
    font-size: 1.18rem;
}
.features-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features-preview-section .features-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 27px;
    max-width: 1576px;
    margin: 0 auto;
}
.feature-card {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 8px;
    padding: 36px 28px; text-align: center; transition: all 0.4s ease;
    color: inherit; text-decoration: none;
}
.feature-card:focus-visible { outline: 3px solid #F59E0B; outline-offset: 4px; }
.features-preview-section .feature-card {
    position: relative;
    height: 258px;
    min-height: 258px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 18px 37px;
    overflow: hidden;
    background-color: #111827;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}
.features-preview-section .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 10, 18, 0.04) 0%, rgba(5, 10, 18, 0.18) 42%, rgba(4, 8, 14, 0.86) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16));
}
.features-preview-section .feature-card::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 19px;
    z-index: 2;
    display: block;
    width: 24px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #F59E0B;
}
.features-preview-section .feature-card:nth-child(1) { background-image: url('../images/1.webp'); }
.features-preview-section .feature-card:nth-child(2) { background-image: url('../images/2.webp'); }
.features-preview-section .feature-card:nth-child(3) { background-image: url('../images/3.webp'); }
.features-preview-section .feature-card:nth-child(4) { background-image: url('../images/4.webp'); }
.features-preview-section .feature-card:nth-child(5) { background-image: url('../images/5.webp'); }
.features-preview-section .feature-card:nth-child(6) { background-image: url('../images/6.webp'); }
.features-preview-section .feature-card:nth-child(7) { background-image: url('../images/7.webp'); }
.features-preview-section .feature-card:nth-child(8) { background-image: url('../images/8.webp'); }
.feature-card:hover { border-color: #D97706; transform: translateY(-8px); box-shadow: 0 20px 40px rgba(217,119,6,0.1); }
.features-preview-section .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(17, 24, 39, 0.18);
}
.feature-icon {
    width: 64px; height: 64px; background: rgba(217,119,6,0.08); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #D97706;
}
.features-preview-section .feature-icon {
    position: relative;
    z-index: 2;
    width: 166px;
    height: 128px;
    margin: 8px auto 4px;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 138'%3E%3Cdefs%3E%3ClinearGradient id='h' x1='42' y1='13' x2='131' y2='105' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23ffffff' stop-opacity='.92'/%3E%3Cstop offset='.58' stop-color='%23fff1df' stop-opacity='.62'/%3E%3Cstop offset='1' stop-color='%23f7b55a' stop-opacity='.16'/%3E%3C/linearGradient%3E%3ClinearGradient id='s' x1='25' y1='100' x2='155' y2='100' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23f59e0b' stop-opacity='0'/%3E%3Cstop offset='.5' stop-color='%23f59e0b' stop-opacity='.42'/%3E%3Cstop offset='1' stop-color='%23f59e0b' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx='90' cy='105' rx='66' ry='19' fill='%23f59e0b' opacity='.08'/%3E%3Cellipse cx='90' cy='99' rx='58' ry='15' fill='%23ffffff' opacity='.72'/%3E%3Cellipse cx='90' cy='99' rx='58' ry='15' fill='none' stroke='url(%23s)' stroke-width='1.1'/%3E%3Cellipse cx='90' cy='99' rx='45' ry='11' fill='none' stroke='%23f0a33c' stroke-opacity='.32' stroke-width='1'/%3E%3Cellipse cx='90' cy='99' rx='32' ry='7' fill='%23fff8ec' opacity='.88'/%3E%3Cellipse cx='90' cy='99' rx='30' ry='7' fill='none' stroke='%23f0a33c' stroke-opacity='.24' stroke-width='.9'/%3E%3Cpolygon points='90,4 137,31 137,85 90,112 43,85 43,31' fill='url(%23h)' stroke='%23f0a33c' stroke-opacity='.54' stroke-width='1.2'/%3E%3Cpolygon points='90,4 137,31 90,58 43,31' fill='%23ffffff' opacity='.46'/%3E%3Cpolygon points='43,31 90,58 90,112 43,85' fill='%23fff9ef' opacity='.35'/%3E%3Cpolygon points='137,31 90,58 90,112 137,85' fill='%23f59e0b' opacity='.055'/%3E%3Cpath d='M90 4v108M43 31l47 27 47-27M43 85l47-27 47 27' fill='none' stroke='%23f0a33c' stroke-opacity='.18' stroke-width='1'/%3E%3Cpath d='M90 112l13 8M90 112l-13 8' stroke='%23f0a33c' stroke-opacity='.28' stroke-width='1'/%3E%3C/svg%3E") center / contain no-repeat;
    color: #D8890C;
    overflow: visible;
}
.features-preview-section .feature-icon::before {
    content: '';
    position: absolute;
    inset: 16px 34px 22px;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.44), transparent 58%);
}
.features-preview-section .feature-icon::after {
    content: none;
}
.features-preview-section .feature-icon svg {
    position: absolute;
    left: 50%;
    top: 52px;
    z-index: 3;
    width: 43px;
    height: 43px;
    margin: 0;
    transform: translate(-50%, -50%);
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.22));
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #D97706, #B45309);
    box-shadow: 0 8px 20px rgba(217,119,6,0.3);
}
.features-preview-section .feature-card:hover .feature-icon {
    background: transparent;
    box-shadow: none;
}
.feature-card:hover .feature-icon svg { color: #fff; stroke: #fff; }
.features-preview-section .feature-card:hover .feature-icon svg {
    color: #F59E0B;
    stroke: currentColor;
}
.features-preview-section .feature-card:nth-child(2) .feature-icon svg path {
    fill: currentColor;
    stroke: none;
}
.feature-title { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.features-preview-section .feature-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(1.25rem, 1.55vw, 1.45rem);
    line-height: 1.22;
    margin-bottom: 9px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.feature-desc { font-size: 0.95rem; color: #6B7280; line-height: 1.6; }
.features-preview-section .feature-desc {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(0.84rem, 0.9vw, 0.92rem);
    line-height: 1.45;
    max-width: 340px;
    margin-bottom: 0;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
}

@media (max-width: 1180px) {
    .features-preview-section .features-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .features-preview-section .feature-card {
        height: auto;
        min-height: 248px;
        aspect-ratio: 372 / 258;
    }
}

@media (max-width: 1024px) {
    .features-preview-section {
        min-height: auto;
        padding: 90px 0 52px;
    }
}

@media (max-width: 768px) {
    .features-preview-section {
        padding: 84px 0 44px;
        background-position: center top;
    }
    .features-preview-section .section-header {
        margin-bottom: 36px;
    }
    .features-preview-section .section-title {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }
    .features-preview-section .section-subtitle {
        font-size: 1rem;
    }
    .features-preview-section .features-preview {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .features-preview-section .feature-card {
        height: auto;
        min-height: 220px;
        padding: 0 20px 34px;
    }
}

/* Products Preview (dark section) */
.products-preview-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    padding: 88px 0 78px;
    background:
        linear-gradient(125deg, #07100f 0%, #10170f 48%, #050808 100%);
    isolation: isolate;
}
.products-preview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 8, 8, 0.94) 0%, rgba(5, 8, 8, 0.68) 48%, rgba(5, 8, 8, 0.88) 100%),
        linear-gradient(180deg, rgba(5, 8, 8, 0.72), rgba(5, 8, 8, 0.94)),
        url('../images/beijing.webp') center center / cover no-repeat;
    opacity: 0.28;
}
.products-tech-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(245, 158, 11, 0.13), transparent 24%, transparent 74%, rgba(16, 185, 129, 0.12)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
}
.products-tech-bg::before,
.products-tech-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.65), rgba(16, 185, 129, 0.35), transparent);
}
.products-tech-bg::before { top: 22%; }
.products-tech-bg::after { bottom: 18%; opacity: 0.62; }
.products-preview-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
}
.products-preview-section .section-header {
    max-width: 760px;
    margin: 0 auto 42px;
}
.products-preview-section .section-tag.light {
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #F8B84E;
}
.products-preview-section .section-title.light {
    color: #F9FAFB;
    text-shadow: 0 0 34px rgba(245, 158, 11, 0.16);
}
.products-preview-section .section-subtitle.light {
    color: rgba(229, 231, 235, 0.72);
}
.products-tech-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
    gap: 22px;
    align-items: stretch;
}
.product-stage,
.product-intel-panel,
.rv-showcase-strip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(9, 16, 15, 0.78);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.product-stage {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(18, 28, 24, 0.95), rgba(7, 11, 11, 0.96));
}
.product-stage::before {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(245, 158, 11, 0.17);
    border-radius: 6px;
    pointer-events: none;
}
.product-stage-topline {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px 0;
    color: rgba(229, 231, 235, 0.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.product-system-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
.product-system-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.8);
}
.product-stage-code {
    color: rgba(248, 184, 78, 0.86);
}
.product-stage-viewport {
    position: relative;
    min-height: 520px;
    margin: 14px 22px 0;
}
.product-grid-layer {
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 58px;
    height: 48%;
    transform: perspective(720px) rotateX(62deg);
    transform-origin: center bottom;
    background:
        linear-gradient(rgba(245, 158, 11, 0.18), transparent),
        repeating-linear-gradient(90deg, rgba(245, 158, 11, 0.2) 0 1px, transparent 1px 54px),
        repeating-linear-gradient(0deg, rgba(16, 185, 129, 0.16) 0 1px, transparent 1px 46px);
    opacity: 0.58;
    filter: drop-shadow(0 -10px 28px rgba(245, 158, 11, 0.08));
}
.product-scan-frame {
    position: absolute;
    inset: 52px 42px 112px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}
.product-scan-frame::before,
.product-scan-frame::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border-color: rgba(245, 158, 11, 0.7);
    border-style: solid;
}
.product-scan-frame::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}
.product-scan-frame::after {
    right: -1px;
    bottom: -1px;
    border-width: 0 2px 2px 0;
}
.product-image-shell {
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 2;
    width: min(76%, 640px);
    aspect-ratio: 1.25 / 1;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 239, 231, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(245, 158, 11, 0.08),
        0 0 80px rgba(245, 158, 11, 0.15);
}
.product-image-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 58%, rgba(245, 158, 11, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0 38%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(90deg, rgba(7, 16, 15, 0.035) 0 1px, transparent 1px 48px);
}
.product-image-shell::after {
    content: '';
    position: absolute;
    inset: 18px;
    z-index: 1;
    border: 1px solid rgba(7, 16, 15, 0.06);
    border-radius: 6px;
    pointer-events: none;
}
.product-image-shell.is-missing::before {
    content: 'Product image';
    display: grid;
    place-items: center;
    color: #6B7280;
    background: linear-gradient(145deg, #F9FAFB, #E5E7EB);
    font-weight: 700;
}
.product-hero-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.02) contrast(1.02);
}
.product-callout {
    position: absolute;
    z-index: 4;
    min-width: 126px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 12, 12, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}
.product-callout::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 62px;
    height: 1px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.78), transparent);
}
.product-callout span {
    display: block;
    color: #F8B84E;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}
.product-callout strong {
    display: block;
    margin-top: 6px;
    color: rgba(229, 231, 235, 0.72);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}
.product-callout-power {
    left: 34px;
    top: 118px;
}
.product-callout-power::before { left: 100%; }
.product-callout-noise {
    right: 38px;
    top: 178px;
}
.product-callout-noise::before {
    right: 100%;
    transform: rotate(180deg);
}
.product-callout-altitude {
    left: 58px;
    bottom: 150px;
}
.product-callout-altitude::before { left: 100%; }
.product-platform {
    position: absolute;
    left: 50%;
    bottom: 52px;
    z-index: 1;
    width: 58%;
    height: 58px;
    transform: translateX(-50%) skewX(-12deg);
    border: 1px solid rgba(245, 158, 11, 0.28);
    background:
        linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.14), transparent),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 0 42px rgba(245, 158, 11, 0.16);
}
.product-platform span {
    display: block;
    height: 100%;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px);
}
.product-color-console {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(3, 8, 8, 0.72);
}
.product-console-copy span {
    display: block;
    color: rgba(229, 231, 235, 0.54);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.product-console-copy strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    margin-top: 4px;
}
.product-colors {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
}
.color-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.24);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    padding: 0;
    margin: 0;
    font: inherit;
    line-height: 0;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.color-dot:hover { transform: scale(1.12); }
.color-dot:focus-visible {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}
.color-dot.active {
    border-color: #F8B84E;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.42), 0 0 24px rgba(245, 158, 11, 0.24);
}
#homePortableImg { transition: opacity 0.2s ease, transform 0.5s ease; }
.product-intel-panel {
    position: relative;
    overflow: hidden;
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(7, 12, 12, 0.78);
}
.product-intel-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, rgba(16, 185, 129, 0.72), transparent);
}
.product-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 10px;
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.26);
    color: #F8B84E;
    background: rgba(245, 158, 11, 0.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.product-name-large {
    max-width: 520px;
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 18px;
}
.product-desc {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 16px;
}
.product-desc-large {
    max-width: 520px;
    color: rgba(229, 231, 235, 0.74);
    font-size: 1.02rem;
    margin-bottom: 26px;
}
.product-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.product-spec {
    min-height: 78px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.product-spec span {
    display: block;
    color: rgba(229, 231, 235, 0.52);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-spec strong {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
}
.product-use-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.product-use-strip span {
    padding: 8px 10px;
    border-radius: 4px;
    color: rgba(229, 231, 235, 0.78);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 13px;
    font-weight: 700;
}
.product-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.product-primary-btn {
    min-height: 48px;
    background: #F59E0B;
    color: #111827;
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.24);
}
.product-primary-btn:hover {
    background: #F8B84E;
    color: #111827;
}
.product-text-link {
    color: rgba(248, 184, 78, 0.9);
    font-size: 14px;
    font-weight: 800;
}
.product-text-link:hover {
    color: #fff;
}
.rv-showcase-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 156px;
    padding: 18px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(6, 10, 10, 0.74);
}
.rv-strip-image {
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.rv-strip-image.is-missing::before {
    content: 'RV image';
    display: grid;
    place-items: center;
    height: 100%;
    color: #9CA3AF;
    font-weight: 700;
}
.rv-strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rv-strip-copy span {
    display: block;
    color: #F8B84E;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.rv-strip-copy h3 {
    color: #fff;
    font-size: 1.24rem;
    line-height: 1.25;
    margin-bottom: 6px;
}
.rv-strip-copy p {
    max-width: 760px;
    color: rgba(229, 231, 235, 0.68);
    font-size: 0.94rem;
    line-height: 1.65;
}
.rv-strip-link {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    border-radius: 8px;
    background: #F59E0B;
}
.rv-strip-link:hover {
    color: #111827;
    background: #F8B84E;
    transform: translateX(3px);
}

@media (max-width: 1180px) {
    .products-preview-container { max-width: 1080px; }
    .products-tech-showcase {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }
    .product-stage { min-height: 590px; }
    .product-stage-viewport { min-height: 492px; }
    .product-image-shell { width: min(76%, 560px); }
    .product-callout { min-width: 112px; }
    .product-callout span { font-size: 20px; }
    .product-intel-panel { padding: 30px 28px; }
    .product-spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
    .products-tech-showcase { grid-template-columns: 1fr; }
    .product-stage { min-height: 600px; }
    .product-intel-panel { min-height: auto; }
    .product-spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .section.products-preview-section.dark-section {
        min-height: auto;
        padding: 68px 0 54px;
    }
    .products-preview-section .section-header {
        margin-bottom: 30px;
    }
    .products-tech-showcase { gap: 16px; }
    .product-stage,
    .product-intel-panel,
    .rv-showcase-strip {
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    }
    .product-stage {
        min-height: 560px;
    }
    .product-stage::before {
        inset: 14px;
    }
    .product-stage-topline {
        padding: 16px 16px 0;
        font-size: 11px;
        letter-spacing: 0.05em;
    }
    .product-stage-viewport {
        min-height: 470px;
        margin: 10px 14px 0;
    }
    .product-scan-frame {
        inset: 44px 18px 122px;
    }
    .product-image-shell {
        top: 42%;
        width: min(88%, 520px);
        padding: 12px;
    }
    .product-callout {
        min-width: 96px;
        padding: 10px 11px;
    }
    .product-callout::before { display: none; }
    .product-callout span { font-size: 18px; }
    .product-callout strong { font-size: 11px; }
    .product-callout-power {
        left: 12px;
        top: 86px;
    }
    .product-callout-noise {
        right: 12px;
        top: 106px;
    }
    .product-callout-altitude {
        left: 12px;
        bottom: 130px;
    }
    .product-platform {
        width: 72%;
        bottom: 74px;
    }
    .product-color-console {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 13px;
    }
    .product-intel-panel {
        padding: 28px 22px;
    }
    .product-desc-large {
        font-size: 0.98rem;
    }
    .rv-showcase-strip {
        grid-template-columns: 132px minmax(0, 1fr) auto;
        gap: 14px;
        padding: 14px;
    }
    .rv-strip-image {
        height: 100px;
    }
}

@media (max-width: 560px) {
    .product-stage {
        min-height: 552px;
    }
    .product-stage-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
    .product-stage-viewport {
        min-height: 446px;
    }
    .product-image-shell {
        top: 43%;
        width: 92%;
        aspect-ratio: 1.08 / 1;
    }
    .product-callout {
        min-width: 86px;
        padding: 8px 9px;
    }
    .product-callout span { font-size: 16px; }
    .product-callout-altitude {
        bottom: 122px;
    }
    .product-color-console {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .product-spec-grid {
        grid-template-columns: 1fr;
    }
    .product-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .product-primary-btn {
        justify-content: center;
        width: 100%;
    }
    .product-text-link {
        text-align: center;
    }
    .rv-showcase-strip {
        grid-template-columns: 1fr;
    }
    .rv-strip-image {
        height: 170px;
    }
    .rv-strip-link {
        width: 100%;
    }
}

/* Products Preview - reference card layout */
.products-preview-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: 44px 0 46px;
    color: #F9FAFB;
    background:
        radial-gradient(circle at 94% 0%, rgba(174, 105, 35, 0.3), transparent 26%),
        linear-gradient(116deg, #151922 0%, #070B12 42%, #0B1018 100%);
    isolation: isolate;
}
.products-preview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 78px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 86px);
    background-size: 100% 78px, 86px 100%;
    mask-image: linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
}
.products-preview-section::after {
    content: none;
}
.products-tech-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 6% 42%, rgba(255, 255, 255, 0.1), transparent 4%),
        radial-gradient(circle at 50% 33%, rgba(245, 158, 11, 0.34), transparent 0.34%);
}
.products-tech-bg::before {
    content: none;
}
.products-tech-bg::after {
    content: none;
}
.products-preview-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1544px;
}
.products-model-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto 42px;
}
.products-model-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #F59E0B;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.products-model-kicker span {
    color: rgba(245, 158, 11, 0.6);
    font-style: italic;
    letter-spacing: 0.1em;
}
.products-model-title {
    margin: 0;
    color: #F6F7FA;
    font-size: clamp(2.55rem, 4.1vw, 3.85rem);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2),
        0 14px 34px rgba(0, 0, 0, 0.48),
        0 0 28px rgba(255, 255, 255, 0.1);
}
.products-model-subtitle {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(229, 231, 235, 0.68);
    font-size: clamp(0.95rem, 1.12vw, 1.08rem);
    line-height: 1.7;
}
.products-model-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}
.model-card {
    position: relative;
    min-height: 410px;
    border-radius: 24px;
    overflow: visible;
}
.model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    border: 1px solid rgba(255, 235, 204, 0.46);
    background:
        radial-gradient(circle at 4% 0%, rgba(255, 214, 151, 0.35), transparent 21%),
        radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(12, 17, 25, 0.72);
    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.03),
        0 28px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.model-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 238, 214, 0.9), transparent 15%, transparent 82%, rgba(245, 158, 11, 0.82)),
        linear-gradient(90deg, rgba(245, 158, 11, 0.42), transparent 16%, transparent 84%, rgba(245, 158, 11, 0.42));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
}
.model-card-index {
    position: absolute;
    z-index: 0;
    top: -98px;
    color: rgba(178, 190, 211, 0.08);
    font-size: clamp(6.5rem, 10.5vw, 9.2rem);
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0;
    user-select: none;
}
.model-card-portable .model-card-index { left: 70px; }
.model-card-rv .model-card-index { right: 70px; }
.model-card-image,
.model-card-copy {
    position: relative;
    z-index: 3;
}
.model-card-image {
    height: 240px;
    margin: 20px 34px 0;
    overflow: hidden;
    border-radius: 20px;
}
.model-card-image::after {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 4px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28), rgba(245, 158, 11, 0.15) 35%, transparent 72%);
    filter: blur(10px);
    opacity: 0.7;
}
.model-card-image.is-missing::before {
    content: 'Product image';
    display: grid;
    place-items: center;
    height: 100%;
    color: rgba(229, 231, 235, 0.72);
    font-weight: 700;
}
.model-card-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.18s ease, filter 0.24s ease;
    filter:
        brightness(1.06)
        contrast(1.04)
        saturate(1.12)
        drop-shadow(0 28px 20px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 24px rgba(255, 255, 255, 0.14));
}
.model-card-image img.is-changing {
    opacity: 0.18;
}
.model-card-image-portable {
    height: 248px;
    margin: 18px 42px 0;
}
.model-card-image-portable img {
    width: 116%;
    height: 116%;
    transform: translate(-8%, -6%);
}
.model-card-image-rv {
    height: 248px;
    margin: 28px 34px 0;
}
.model-card-image-rv img {
    width: 132%;
    height: 132%;
    max-width: none;
    transform: translate(-15%, -15%);
}
.model-card-image-rv[data-variant="dropin"] img {
    width: 140%;
    height: 140%;
    max-width: none;
    transform: translate(-19%, -14%);
}
.model-card-copy {
    max-width: 540px;
    margin: 20px 32px 26px;
}
.model-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 8px;
}
.model-card-copy h3 {
    margin: 0 0 8px;
    color: #FFFFFF;
    font-size: clamp(1.38rem, 1.8vw, 1.76rem);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}
.model-card-title-row h3 {
    min-width: 0;
    margin: 0;
}
.model-color-picker {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 9px;
    padding-top: 4px;
}
.model-color-swatch {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    cursor: pointer;
    background: var(--swatch-color);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.04),
        0 6px 14px rgba(0, 0, 0, 0.22);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.model-color-swatch::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 58%);
    pointer-events: none;
}
.model-color-swatch:hover,
.model-color-swatch:focus-visible {
    transform: translateY(-1px) scale(1.08);
    border-color: rgba(255, 236, 210, 0.92);
    outline: none;
}
.model-color-swatch.active {
    border-color: #F59E0B;
    box-shadow:
        0 0 0 2px rgba(9, 13, 20, 0.9),
        0 0 0 4px rgba(245, 158, 11, 0.72),
        0 8px 18px rgba(245, 158, 11, 0.2);
}
.model-color-green { --swatch-color: #80B957; }
.model-color-yellow { --swatch-color: #DDB33B; }
.model-color-white { --swatch-color: #F4F0E7; border-color: rgba(245, 158, 11, 0.45); }
.model-color-brown { --swatch-color: #8A5B34; }
.model-variant-picker {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 7px;
    padding: 3px;
    border: 1px solid rgba(245, 158, 11, 0.32);
    border-radius: 11px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(8, 12, 18, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.model-variant-option {
    position: relative;
    min-width: 46px;
    min-height: 28px;
    padding: 6px 11px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(229, 231, 235, 0.72);
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.model-variant-option:hover,
.model-variant-option:focus-visible {
    color: #FFE8C0;
    border-color: rgba(245, 158, 11, 0.34);
    outline: none;
}
.model-variant-option.active {
    color: #111827;
    border-color: rgba(255, 219, 160, 0.76);
    background: linear-gradient(135deg, #F8B84E, #F59E0B);
    box-shadow:
        0 8px 18px rgba(245, 158, 11, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.model-variant-option.active:hover,
.model-variant-option.active:focus-visible {
    color: #111827;
    transform: translateY(-1px);
}
.model-card-copy p {
    margin: 0 0 16px;
    color: rgba(229, 231, 235, 0.72);
    font-size: 0.94rem;
    line-height: 1.5;
}
.model-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 152px;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.82);
    color: #F59E0B;
    background: rgba(8, 12, 18, 0.38);
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow:
        inset 0 0 22px rgba(245, 158, 11, 0.04),
        0 0 20px rgba(245, 158, 11, 0.1);
}
.model-card-btn:hover {
    color: #111827;
    background: #F59E0B;
    border-color: #F8B84E;
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.28);
    transform: translateY(-2px);
}
.model-card-btn svg {
    flex: 0 0 auto;
    transition: transform 0.24s ease;
}
.model-card-btn:hover svg { transform: translateX(4px); }

.manufacturing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    max-width: 1360px;
    margin: 0 auto;
}
.manufacturing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 430px;
    padding: 44px;
    overflow: hidden;
    border: 1px solid rgba(255, 235, 204, 0.42);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 8%, rgba(245, 158, 11, 0.26), transparent 24%),
        radial-gradient(circle at 86% 92%, rgba(95, 117, 150, 0.24), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(10, 15, 23, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 80px rgba(0, 0, 0, 0.36);
    isolation: isolate;
}
.manufacturing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 62px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 70px);
    opacity: 0.74;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), #000 42%, #000 100%);
}
.manufacturing-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    padding: 1px;
    background:
        linear-gradient(125deg, rgba(255, 238, 214, 0.86), transparent 18%, transparent 78%, rgba(245, 158, 11, 0.82)),
        linear-gradient(90deg, rgba(245, 158, 11, 0.36), transparent 22%, transparent 78%, rgba(245, 158, 11, 0.36));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}
.manufacturing-card-quality {
    background:
        radial-gradient(circle at 15% 8%, rgba(245, 158, 11, 0.28), transparent 25%),
        radial-gradient(circle at 88% 80%, rgba(55, 82, 125, 0.28), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(10, 15, 23, 0.78);
}
.manufacturing-card-value {
    background:
        radial-gradient(circle at 16% 16%, rgba(16, 185, 129, 0.16), transparent 24%),
        radial-gradient(circle at 88% 88%, rgba(245, 158, 11, 0.24), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(10, 15, 23, 0.78);
}
.manufacturing-card-index {
    position: absolute;
    top: 24px;
    right: 34px;
    z-index: 0;
    color: rgba(178, 190, 211, 0.08);
    font-size: clamp(5.4rem, 8vw, 8.4rem);
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0;
    user-select: none;
}
.manufacturing-card-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 32px;
}
.manufacturing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border: 1px solid rgba(245, 158, 11, 0.42);
    border-radius: 16px;
    color: #F59E0B;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(8, 12, 18, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 16px 30px rgba(0, 0, 0, 0.22);
}
.manufacturing-icon svg {
    width: 31px;
    height: 31px;
}
.manufacturing-eyebrow {
    color: #F59E0B;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.manufacturing-card h3 {
    position: relative;
    z-index: 3;
    max-width: 620px;
    margin: 0 0 18px;
    color: #FFFFFF;
    font-size: clamp(1.65rem, 2.2vw, 2.18rem);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}
.manufacturing-card p {
    position: relative;
    z-index: 3;
    max-width: 660px;
    margin: 0;
    color: rgba(229, 231, 235, 0.76);
    font-size: clamp(0.95rem, 1vw, 1.03rem);
    line-height: 1.78;
}
.manufacturing-points {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}
.manufacturing-points span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 10px;
    color: rgba(255, 245, 229, 0.9);
    background: rgba(8, 12, 18, 0.34);
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .products-model-grid { gap: 24px; }
    .model-card { min-height: 394px; }
    .model-card-image { height: 228px; }
    .model-card-image-portable {
        height: 236px;
        margin-left: 30px;
        margin-right: 30px;
    }
    .model-card-image-rv { height: 236px; }
    .model-card-copy { margin-left: 26px; margin-right: 26px; }
    .manufacturing-grid { gap: 24px; }
    .manufacturing-card { min-height: 410px; padding: 36px; }
    .manufacturing-points { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
    .products-preview-section {
        display: block;
        padding: 68px 0;
    }
    .products-model-header { margin-bottom: 42px; }
    .products-model-grid { grid-template-columns: 1fr; }
    .manufacturing-grid { grid-template-columns: 1fr; max-width: 760px; }
    .model-card { min-height: 520px; }
    .model-card-index {
        top: -88px;
        font-size: clamp(6rem, 22vw, 9rem);
    }
    .model-card-portable .model-card-index,
    .model-card-rv .model-card-index {
        left: auto;
        right: 42px;
    }
    .model-card-image { height: 318px; }
    .manufacturing-card { min-height: 360px; }
}

@media (max-width: 768px) {
    .section.products-preview-section.dark-section {
        padding: 58px 0;
    }
    .products-model-kicker {
        gap: 12px;
        font-size: 13px;
    }
    .products-model-title {
        font-size: clamp(2.35rem, 10vw, 3.2rem);
    }
    .products-model-subtitle {
        margin-top: 16px;
        font-size: 0.98rem;
    }
    .products-model-grid { gap: 28px; }
    .model-card {
        min-height: 486px;
        border-radius: 22px;
    }
    .manufacturing-card {
        min-height: auto;
        padding: 30px 24px;
        border-radius: 20px;
    }
    .manufacturing-card-top {
        margin-bottom: 26px;
    }
    .manufacturing-card h3 {
        font-size: clamp(1.38rem, 7vw, 1.78rem);
    }
    .manufacturing-card p {
        font-size: 0.93rem;
        line-height: 1.7;
    }
    .manufacturing-card-index {
        top: 18px;
        right: 22px;
        font-size: clamp(4.4rem, 21vw, 6rem);
    }
    .model-card-image {
        height: 280px;
        margin: 28px 24px 0;
        border-radius: 16px;
    }
    .model-card-image-rv img {
        width: 145%;
        height: 145%;
        transform: translate(-18%, -18%);
    }
    .model-card-image-rv[data-variant="dropin"] img {
        width: 140%;
        height: 140%;
        transform: translate(-19%, -14%);
    }
    .model-card-copy {
        margin: 0 24px 30px;
    }
    .model-color-picker {
        gap: 8px;
        padding-top: 5px;
    }
    .model-variant-picker {
        gap: 6px;
        padding: 3px;
    }
    .model-variant-option {
        min-width: 44px;
        min-height: 28px;
        padding: 6px 10px;
        font-size: 13px;
    }
    .model-card-copy h3 {
        font-size: clamp(1.48rem, 7vw, 2rem);
    }
    .model-card-copy p {
        font-size: 0.96rem;
    }
    .model-card-btn {
        min-width: 164px;
        min-height: 50px;
        border-radius: 10px;
    }
    .manufacturing-points {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .products-preview-container { padding: 0 16px; }
    .products-model-header { margin-bottom: 34px; }
    .model-card {
        min-height: 442px;
        border-radius: 18px;
    }
    .manufacturing-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
    .manufacturing-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        border-radius: 14px;
    }
    .manufacturing-icon svg {
        width: 28px;
        height: 28px;
    }
    .manufacturing-eyebrow {
        font-size: 0.86rem;
    }
    .model-card-index {
        top: -62px;
        right: 22px !important;
        font-size: 5.4rem;
    }
    .model-card-image {
        height: 234px;
        margin: 22px 16px 0;
    }
    .model-card-image-portable img {
        width: 112%;
        height: 112%;
        transform: translate(-5%, -5%);
    }
    .model-card-copy {
        margin: 0 20px 24px;
    }
    .model-card-title-row {
        gap: 14px;
    }
    .model-card-rv .model-card-title-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .model-card-rv .model-variant-picker {
        margin-left: auto;
    }
    .model-color-swatch {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }
    .model-card-btn {
        width: auto;
        min-width: 152px;
        padding: 10px 18px;
    }
}

/* Stats */
.stats-section {
    position: relative;
    overflow: hidden;
    min-height: 780px;
    padding: 124px 0 132px;
    background:
        linear-gradient(180deg, #F8FAFD 0%, #FFFFFF 42%, #EEF3F8 100%);
    isolation: isolate;
}
.stats-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 82px;
    z-index: 0;
    width: min(1180px, 76vw);
    height: 280px;
    transform: translateX(-50%);
    opacity: 0.72;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300'%3E%3Cdefs%3E%3Cpattern id='d' width='9' height='9' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2.2' cy='2.2' r='1.5' fill='%23D9B572'/%3E%3C/pattern%3E%3C/defs%3E%3Cg fill='url(%23d)' opacity='.34'%3E%3Cpath d='M65 116c31-43 89-62 153-50 34 6 55 25 90 29 52 6 96-21 142-9 30 8 47 34 37 60-10 27-54 27-89 23-31-3-54 1-82 14-40 18-90 23-132 5-41-17-101-17-119-72Z'/%3E%3Cpath d='M381 58c47-33 112-42 169-20 42 17 74 48 121 58 39 9 74-2 109 11 31 12 46 41 32 68-21 39-83 23-121 37-34 12-57 49-97 48-38-1-54-32-84-44-35-13-88 4-113-24-24-27 6-65-16-134Z'/%3E%3Cpath d='M690 73c67-28 142-28 205-1 46 20 82 57 134 62 40 4 77-9 107 17 25 22 13 56-24 66-42 11-83-19-128-12-42 7-72 44-116 44-42 0-59-34-96-47-39-14-91 4-119-23-29-28-4-75 37-106Z'/%3E%3Cpath d='M544 202c35-15 74-4 92 22 22 31-8 55-18 78-31-12-61-33-80-61-12-17-9-31 6-39Z'/%3E%3Cpath d='M957 218c34-6 62 10 72 37 7 18 2 34-13 47-38-8-70-31-82-61-4-11 5-20 23-23Z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.stats-section::after {
    content: '';
    position: absolute;
    left: -8vw;
    right: -8vw;
    bottom: -150px;
    z-index: 0;
    height: 420px;
    pointer-events: none;
    background:
        linear-gradient(168deg, rgba(255, 255, 255, 0) 0 38%, rgba(213, 223, 234, 0.48) 38.2% 58%, rgba(255, 255, 255, 0) 58.2%),
        linear-gradient(12deg, rgba(255, 255, 255, 0) 0 42%, rgba(241, 245, 249, 0.9) 42.2% 70%, rgba(255, 255, 255, 0) 70.2%);
}
.stats-section .container {
    position: relative;
    z-index: 1;
    max-width: 1504px;
}
.stats-header {
    max-width: 980px;
    margin: 0 auto 82px;
    text-align: center;
}
.stats-eyebrow {
    margin-bottom: 18px;
    color: #7A8492;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.34em;
}
.stats-section .section-title {
    margin: 0;
    color: #1E293B;
    font-size: clamp(2.8rem, 5vw, 4.35rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}
.stats-title-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
}
.stats-title-mark span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(205, 160, 89, 0.24), rgba(205, 160, 89, 0.9));
}
.stats-title-mark span + span {
    width: 18px;
    opacity: 0.55;
}
.stats-section .stats-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 70px;
    max-width: 1408px;
    margin: 0 auto;
}
.stat-item {
    position: relative;
    min-height: 396px;
    padding: 48px 24px 44px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
    box-shadow:
        0 30px 80px rgba(105, 123, 143, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 38px 96px rgba(105, 123, 143, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}
.stat-icon {
    width: 108px;
    height: 108px;
    margin-bottom: 42px;
    border-radius: 50%;
    color: #D2A864;
    background:
        linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(246, 237, 224, 0.82));
    border: 1px solid rgba(222, 192, 147, 0.32);
    box-shadow:
        0 16px 38px rgba(185, 148, 92, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon svg {
    width: 52px;
    height: 52px;
}
.stat-number {
    margin: 0;
    color: #D2A864;
    font-size: clamp(4.1rem, 5.3vw, 5.7rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: 0;
}
.stats-section .stat-number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.14em;
}
.stats-section .stat-unit {
    display: inline-block;
    margin-bottom: 0.08em;
    color: #D2A864;
    font-size: 0.22em;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}
.stat-divider {
    width: 34px;
    height: 2px;
    margin: 34px auto 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(210, 168, 100, 0.14), #D2A864, rgba(210, 168, 100, 0.14));
}
.stat-label {
    color: #1E293B;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 800;
}
.stat-label.light { color: #9CA3AF; }
.counter { display: inline; }
.dark-section .stat-item {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}
.dark-section .stat-item:hover {
    background: rgba(255,255,255,0.06); border-color: rgba(217,119,6,0.3);
    transform: translateY(-4px);
}
.dark-section .stat-number { color: #F59E0B; text-shadow: 0 0 30px rgba(245,158,11,0.3); }
.dark-section .stat-label { color: #9CA3AF; }

@media (max-width: 1280px) {
    .stats-section .stats-grid {
        gap: 32px;
        max-width: 1080px;
    }
    .stat-item {
        min-height: 360px;
        padding: 42px 20px 38px;
    }
    .stat-icon {
        width: 96px;
        height: 96px;
        margin-bottom: 34px;
    }
}

@media (max-width: 1024px) {
    .stats-section {
        min-height: auto;
        padding: 96px 0 104px;
    }
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .stats-section {
        padding: 78px 0 86px;
    }
    .stats-section::before {
        top: 56px;
        width: 128vw;
        height: 220px;
    }
    .stats-header {
        margin-bottom: 44px;
    }
    .stats-eyebrow {
        font-size: 11px;
        letter-spacing: 0.22em;
        line-height: 1.45;
    }
    .stats-section .section-title {
        font-size: clamp(1.9rem, 8.6vw, 2.35rem);
    }
    .stats-title-mark {
        margin-top: 18px;
    }
    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 340px;
    }
    .stat-item {
        min-height: 312px;
        padding: 34px 20px 32px;
        border-radius: 24px;
    }
    .stat-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 26px;
    }
    .stat-icon svg {
        width: 42px;
        height: 42px;
    }
    .stat-number {
        font-size: clamp(3.4rem, 18vw, 4.4rem);
    }
    .stat-divider {
        margin: 26px auto 20px;
    }
}

/* Solutions */
.solutions-section {
    position: relative;
    overflow: hidden;
    padding: 104px 0 112px;
    color: #F9FAFB;
    background:
        linear-gradient(135deg, #101826 0%, #0C1521 45%, #122238 100%);
    isolation: isolate;
}
.solutions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 86px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 78px),
        radial-gradient(circle at 82% 12%, rgba(245, 158, 11, 0.18), transparent 28%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
}
.solutions-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(122deg, transparent 0 18%, rgba(245, 158, 11, 0.16) 18.08%, transparent 18.46%),
        linear-gradient(162deg, transparent 0 74%, rgba(255, 255, 255, 0.08) 74.1%, transparent 74.48%);
}
.solutions-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}
.solutions-header {
    margin: 0 0 28px;
}
.solutions-title {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}
.solutions-title-line {
    width: 86px;
    height: 5px;
    margin-top: 18px;
    background: linear-gradient(90deg, #F59E0B, #F8D36A);
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}
.solution-card {
    position: relative;
    overflow: hidden;
    min-height: 512px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    background: #111C2B;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42);
}
.solution-media {
    position: relative;
    height: 292px;
    overflow: hidden;
    background: var(--solution-media-color);
}
.solution-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(1.02) contrast(1.03) brightness(0.94);
}
.solution-media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}
.solution-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(17, 28, 43, 0.34));
    pointer-events: none;
}
.solution-card:hover .solution-media img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.05) brightness(0.98);
}
.solution-card-rv {
    --solution-media-color: #344454;
}
.solution-card-cabin {
    --solution-media-color: #244859;
}
.solution-card-camping {
    --solution-media-color: #3F4D3D;
}
.solution-card-engineering {
    --solution-media-color: #514639;
}
.solution-copy {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 26px;
    background: #111C2B;
}
.solution-kicker {
    margin-bottom: 12px;
    color: #F8C14F;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.solution-copy h3 {
    margin: 0 0 14px;
    color: #FFFFFF;
    font-size: clamp(1.28rem, 1.8vw, 1.64rem);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: 0;
}
.solution-copy p {
    margin: 0;
    color: rgba(243, 244, 246, 0.84);
    font-size: 0.95rem;
    line-height: 1.68;
}
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    color: #F8C14F;
    font-size: 0.96rem;
    line-height: 1;
    font-weight: 900;
}
.solution-link svg {
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}
.solution-link:hover {
    color: #FFE6A6;
}
.solution-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .solutions-section {
        padding: 82px 0 88px;
    }
    .solutions-grid {
        gap: 26px;
    }
    .solution-card {
        min-height: 480px;
    }
    .solution-media {
        height: 252px;
    }
    .solution-copy {
        min-height: 228px;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 68px 0;
    }
    .solutions-header {
        margin-bottom: 24px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .solution-card {
        min-height: 0;
    }
    .solution-media {
        height: 220px;
    }
    .solution-copy {
        min-height: 212px;
        padding: 22px;
    }
}

/* Latest News */
.latest-news-section {
    position: relative;
    overflow: hidden;
    padding: 108px 0 116px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    color: #122033;
}
.latest-news-container {
    max-width: 1180px;
}
.latest-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 58px;
}
.latest-news-title {
    margin: 0;
    color: #122033;
    font-size: clamp(2.05rem, 3.4vw, 3.05rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}
.latest-news-title-line {
    width: 88px;
    height: 6px;
    margin-top: 22px;
    background: linear-gradient(90deg, #D97706, #F8C14F);
}
.latest-news-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.latest-news-nav {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: #647080;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.latest-news-nav-next {
    background: #122033;
}
.latest-news-nav:hover {
    background: #D97706;
    color: #FFFFFF;
    transform: translateY(-2px);
}
.latest-news-viewport {
    overflow: hidden;
}
.latest-news-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.latest-news-track::-webkit-scrollbar {
    display: none;
}
.latest-news-card {
    flex: 0 0 calc((100% - 64px) / 3);
    min-width: 0;
    min-height: 612px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #122033;
    box-shadow: 0 28px 70px rgba(18, 32, 51, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.latest-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 86px rgba(18, 32, 51, 0.24);
}
.latest-news-card-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
}
.latest-news-media {
    height: 272px;
    overflow: hidden;
    background: #D7DEE7;
}
.latest-news-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: filter 0.45s ease;
    filter: saturate(1.02) contrast(1.03);
}
.latest-news-card:hover .latest-news-media img {
    filter: saturate(1.08) contrast(1.05);
}
.latest-news-copy {
    display: flex;
    flex: 1;
    min-height: 340px;
    flex-direction: column;
    padding: 28px 30px 26px;
    background: #122033;
}
.latest-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.latest-news-meta-sep {
    color: rgba(255, 255, 255, 0.62);
}
.latest-news-copy h3 {
    margin: 0 0 28px;
    color: #FFFFFF;
    font-size: clamp(1.28rem, 1.9vw, 1.7rem);
    line-height: 1.34;
    font-weight: 900;
    letter-spacing: 0;
}
.latest-news-copy p {
    margin: 0;
    color: rgba(243, 244, 246, 0.86);
    font-size: 0.98rem;
    line-height: 1.72;
}
.latest-news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 30px;
    color: #F8D36A;
    font-size: 0.96rem;
    line-height: 1;
    font-weight: 900;
}
.latest-news-readmore svg {
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}
.latest-news-card:hover .latest-news-readmore svg {
    transform: translateX(5px);
}

@media (max-width: 980px) {
    .latest-news-section {
        padding: 86px 0 92px;
    }
    .latest-news-header {
        margin-bottom: 42px;
    }
    .latest-news-card {
        flex-basis: calc((100% - 28px) / 2);
        min-height: 584px;
    }
    .latest-news-track {
        gap: 28px;
    }
    .latest-news-media {
        height: 248px;
    }
    .latest-news-copy {
        min-height: 336px;
        padding: 26px;
    }
}

@media (max-width: 768px) {
    .latest-news-section {
        padding: 70px 0 74px;
    }
    .latest-news-header {
        align-items: flex-start;
        margin-bottom: 32px;
    }
    .latest-news-controls {
        padding-top: 8px;
    }
    .latest-news-nav {
        width: 50px;
        height: 50px;
    }
    .latest-news-card {
        flex-basis: min(86vw, 420px);
        min-height: 540px;
    }
    .latest-news-media {
        height: 224px;
    }
    .latest-news-copy {
        min-height: 316px;
        padding: 24px;
    }
    .latest-news-copy h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .latest-news-header {
        flex-direction: column;
        gap: 24px;
    }
    .latest-news-controls {
        align-self: flex-end;
        padding-top: 0;
    }
    .latest-news-card {
        flex-basis: 100%;
    }
    .latest-news-media {
        height: 208px;
    }
    .latest-news-copy {
        min-height: 312px;
        padding: 22px;
    }
}

/* CTA Section */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
}
.cta-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(217,119,6,0.12) 0%, transparent 50%);
}
.cta-content {
    position: relative; z-index: 1; text-align: center;
    max-width: 700px; margin: 0 auto;
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800;
    color: #fff; margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem; color: #9CA3AF;
    margin-bottom: 36px; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero (subpages) */
.page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 136px 20px 82px;
    background: #141210;
}
.page-hero > .container {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    max-width: none;
    margin: 0 auto;
    padding: 0;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(105deg, rgba(9,10,12,0.9) 0%, rgba(9,10,12,0.76) 46%, rgba(35,20,6,0.46) 100%),
        url('../images/chanpinbanner.webp') center center / cover no-repeat;
    background-size: 72px 72px, 72px 72px, cover, cover;
    background-position: left top, left top, center center, center center;
    background-repeat: repeat, repeat, no-repeat, no-repeat;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.24) 50%, rgba(217,119,6,0.16) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
.page-hero-eyebrow {
    margin: 0 0 18px;
    color: #f3b45c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}
.page-hero-title {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
}
.page-hero-title::after {
    content: '';
    display: block;
    width: 128px;
    height: 5px;
    margin-top: 28px;
    background: #d97706;
}
.page-hero-subtitle {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.75;
}

/* Product Detail */
.product-detail-section { overflow: hidden; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-detail-grid.reverse > :first-child { order: 2; }
.product-detail-grid.reverse > :last-child { order: 1; }
.product-gallery { position: relative; }
.product-main-image { border-radius: 16px; overflow: hidden; background: #F3F4F6; }
.product-main-image img { width: 100%; height: auto; display: block; }
.product-badge {
    display: inline-block; padding: 6px 16px;
    background: rgba(217,119,6,0.1); color: #D97706;
    border-radius: 100px; font-size: 13px; font-weight: 600;
    letter-spacing: 1px; margin-bottom: 16px;
}
.product-detail-title { font-size: 2.2rem; font-weight: 800; color: #111827; margin-bottom: 16px; }
.product-detail-title.light { color: #fff; }
.product-detail-desc { font-size: 1.05rem; color: #6B7280; line-height: 1.8; margin-bottom: 24px; }
.product-detail-desc.light { color: #D1D5DB; }
.product-highlights { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.highlight-item { display: flex; gap: 16px; align-items: flex-start; }
.highlight-icon {
    width: 48px; height: 48px; background: rgba(217,119,6,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: #D97706; flex-shrink: 0;
}
.highlight-item h4 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.highlight-item h4.light { color: #fff; }
.highlight-item p { font-size: 0.9rem; color: #6B7280; }
.highlight-item p.light { color: #D1D5DB; }
.product-use-cases { margin-bottom: 28px; }
.product-use-cases h4 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.use-cases-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.use-case-tag {
    padding: 8px 16px; background: rgba(217,119,6,0.08);
    color: #B45309; border-radius: 8px; font-size: 14px; font-weight: 500;
}
.color-swatches { display: flex; gap: 12px; margin-top: 16px; justify-content: center; }
.color-swatch {
    width: 44px; height: 44px; border-radius: 50%;
    border: 3px solid transparent; cursor: pointer; transition: all 0.3s; position: relative;
}
.color-swatch.active { border-color: #D97706; box-shadow: 0 0 0 3px rgba(217,119,6,0.2); }
.color-swatch:hover { transform: scale(1.1); }
.swatch-label {
    position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
    font-size: 11px; color: #6B7280; white-space: nowrap; opacity: 0; transition: opacity 0.2s;
}
.color-swatch:hover .swatch-label { opacity: 1; }

/* Specs Table */
.specs-table-wrapper {
    max-width: 800px; margin: 0 auto; border-radius: 16px;
    overflow: hidden; border: 1px solid #E5E7EB;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid #F3F4F6; }
.specs-table tr:last-child { border-bottom: none; }
.spec-label { padding: 18px 24px; font-weight: 600; color: #374151; background: #F9FAFB; width: 40%; }
.spec-value { padding: 18px 24px; color: #111827; font-weight: 500; }

/* Features Full Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-full-card {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 16px;
    padding: 36px; position: relative; transition: all 0.4s ease; overflow: hidden;
}
.feature-full-card:hover { border-color: #D97706; transform: translateY(-6px); box-shadow: 0 15px 35px rgba(217,119,6,0.1); }
.feature-number { position: absolute; top: 16px; right: 20px; font-size: 3rem; font-weight: 900; color: rgba(217,119,6,0.08); line-height: 1; }
.feature-icon-box {
    width: 60px; height: 60px; background: rgba(217,119,6,0.08); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; color: #D97706; margin-bottom: 20px;
}
.feature-full-title { font-size: 1.15rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.feature-full-desc { font-size: 0.95rem; color: #6B7280; line-height: 1.7; }

/* Comparison Table */
.comparison-table-wrapper {
    max-width: 900px; margin: 0 auto; border-radius: 16px;
    overflow: hidden; border: 1px solid #E5E7EB; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead th { padding: 20px 24px; font-size: 1rem; font-weight: 700; text-align: left; }
.feature-col { background: #F9FAFB; color: #374151; width: 25%; }
.belief-col { background: rgba(217,119,6,0.08); color: #B45309; width: 37.5%; }
.other-col { background: #F9FAFB; color: #4B5563; width: 37.5%; }
.comparison-table tbody td { padding: 16px 24px; border-top: 1px solid #F3F4F6; font-size: 0.95rem; }
.feature-name { font-weight: 600; color: #374151; background: #FAFAFA; }
.belief-val { color: #1F2937; background: rgba(217,119,6,0.03); }
.other-val { color: #6B7280; }
.check-icon { color: #10B981; font-weight: 700; margin-right: 6px; }
.cross-icon { color: #EF4444; font-weight: 700; margin-right: 6px; }

/* Story/About Section */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text { font-size: 1.05rem; color: #4B5563; line-height: 1.8; margin-bottom: 16px; }
.story-photo {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.mission-section { padding: 80px 0; text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 16px;
    padding: 32px; text-align: center; transition: all 0.4s ease;
}
.value-card:hover { border-color: #D97706; transform: translateY(-6px); box-shadow: 0 15px 35px rgba(217,119,6,0.08); }
.value-icon {
    width: 60px; height: 60px; background: rgba(217,119,6,0.08); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; color: #D97706; margin: 0 auto 16px;
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #111827; }
.value-card p { font-size: 0.9rem; color: #6B7280; line-height: 1.6; }
.company-info-card {
    max-width: 600px; margin: 0 auto; text-align: center;
    padding: 48px; background: #fff; border-radius: 20px; border: 1px solid #E5E7EB;
}
.company-logo { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.company-name { font-size: 1.1rem; color: #4B5563; margin-bottom: 24px; }
.company-contacts { display: flex; flex-direction: column; gap: 12px; }
.company-contact-item { display: flex; align-items: center; gap: 12px; justify-content: center; color: #4B5563; }
.company-contact-item a { color: #D97706; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 32px; color: #111827; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: #F9FAFB; border-radius: 12px;
    border: 1px solid #E5E7EB; transition: all 0.3s;
}
.contact-card:hover { border-color: #D97706; background: #fff; }
.contact-card-icon {
    width: 48px; height: 48px; background: rgba(217,119,6,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: #D97706; flex-shrink: 0;
}
.contact-card h4 { font-weight: 600; color: #111827; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 0.95rem; color: #4B5563; }
.contact-card a:hover { color: #D97706; }
.distributor-card {
    padding: 24px; background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(245,158,11,0.05));
    border: 1px solid rgba(217,119,6,0.2); border-radius: 12px;
}
.distributor-card h3 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.distributor-card p { font-size: 0.9rem; color: #4B5563; line-height: 1.6; }
.contact-form-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 32px; color: #111827; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group label .required { color: var(--error); }
.form-input, .form-textarea {
    width: 100%; padding: 14px 16px; border: 1px solid #E5E7EB; border-radius: 10px;
    font-size: 15px; color: #111827; transition: all 0.3s; background: #fff; outline: none;
    font-family: inherit;
}
.form-input:focus, .form-textarea:focus { border-color: #D97706; box-shadow: 0 0 0 3px rgba(217,119,6,0.1); }
.form-textarea { resize: vertical; }
.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px; color: var(--gray-900);
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}
.form-group select:focus,
.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}
.radio-group { display: flex; gap: 20px; }
.radio-group label {
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; font-size: 14px; color: var(--gray-700);
}
.radio-group input[type="radio"] { width: 18px; height: 18px; accent-color: var(--primary); }

/* Site Footer */
.site-footer { background: #111827; color: #D1D5DB; padding-top: 64px; }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo .brand-icon { width: 28px; height: 28px; }
.footer-logo .brand-text { font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand-desc { font-size: 0.9rem; color: #9CA3AF; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #9CA3AF;
    transition: all 0.3s; text-decoration: none;
}
.social-link:hover { background: #D97706; color: #fff; transform: translateY(-3px); }
.footer-links-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { color: #9CA3AF; font-size: 0.9rem; transition: color 0.2s; text-decoration: none; }
.footer-links-list a:hover { color: #D97706; }
.footer-contact-panel { min-width: 0; }
.footer-contact-panel .footer-links-title { margin-bottom: 16px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.footer-contact-item svg { color: #D97706; flex-shrink: 0; }
.footer-contact-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.footer-contact-label { font-size: 12px; color: #6B7280; }
.footer-contact-item a { color: #9CA3AF; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact-item a:hover { color: #D97706; }
.footer-bottom { padding: 24px 0; }
.footer-bottom-content {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copyright { font-size: 0.85rem; color: #6B7280; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.85rem; color: #6B7280; text-decoration: none; }
.footer-legal a:hover { color: #D97706; }

/* Old Footer Compat */
.footer { background: var(--white); border-top: 1px solid var(--gray-200); padding: 40px 0; }
.footer-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { color: var(--gray-600); font-size: 14px; }
.footer-links a:hover { color: var(--primary); }

/* Old Footer (with footer-brand and footer-links-group) */
.footer-brand { max-width: 320px; }
.footer-brand .brand-text {
    font-size: 24px; font-weight: 800;
    margin-bottom: 16px; display: block;
}
.footer-brand .footer-desc {
    font-size: 14px; color: rgba(156, 163, 175, 0.8);
    line-height: 1.7; margin-bottom: 20px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: var(--gray-400); font-size: 18px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary); color: var(--white);
    transform: translateY(-2px);
}
.footer-links-group h4 {
    font-size: 14px; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a {
    font-size: 14px; color: rgba(156, 163, 175, 0.8);
    transition: all 0.2s; display: inline-block;
}
.footer-links-group a:hover { color: var(--accent); transform: translateX(4px); }
/* Navbar Scroll */
.navbar-transparent.navbar-scrolled {
    background: rgba(17,24,39,0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255,255,255,0.1) !important;
}

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.reveal-left { transform: translateX(-30px); }
.reveal.reveal-left.active { transform: translateX(0); }
.reveal.reveal-right { transform: translateX(30px); }
.reveal.reveal-right.active { transform: translateX(0); }
.reveal.reveal-scale { transform: scale(0.9); }
.reveal.reveal-scale.active { transform: scale(1); }

.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.8s; }

.floating { animation: float 3s ease-in-out infinite; }
.floating-slow { animation: float 5s ease-in-out infinite; }
.pulse-glow { animation: borderGlow 2s ease-in-out infinite; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes borderGlow { 0%, 100% { border-color: rgba(217, 119, 6, 0.2); } 50% { border-color: rgba(217, 119, 6, 0.5); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile Menu Override */
.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; flex-direction: column; gap: 5px; z-index: 1001;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px; background: #374151;
    transition: all 0.3s; border-radius: 2px;
}
.navbar-transparent .mobile-menu-btn span { background: #fff; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== 12. SEARCH PAGE ========== */
.page-search { background: var(--gray-50); }
.page-search .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}
.page-search .nav-link { color: var(--gray-600); }
.page-search .nav-link:hover { color: var(--primary); }
.page-search .nav-link.active { color: var(--primary); }
.page-search .user-btn { border-color: var(--gray-300); color: var(--gray-700); }
.page-search .lang-btn { border-color: var(--gray-300); color: var(--gray-600); }
.search-main { flex: 1; padding: 90px 20px 40px; }

.search-layout {
    display: flex; gap: 24px;
    max-width: var(--container-wide); margin: 0 auto;
    align-items: flex-start;
}

.search-sidebar {
    width: 260px; flex-shrink: 0;
    position: sticky; top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.search-sidebar::-webkit-scrollbar { display: none; }
.sidebar-inner {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow);
    overflow: hidden;
}
.sidebar-section {
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-section:last-child { border-bottom: none; }

.sidebar-section .section-title {
    font-size: 12px; font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 14px;
}

/* Stats section (search sidebar) */
.sidebar-inner .stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center; padding: 24px 20px;
}
.stats-number {
    font-size: 28px; font-weight: 700;
    color: var(--white); line-height: 1.2; margin-bottom: 4px;
}
.stats-label { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }
.stats-time { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* Filter options */
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-radio {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; padding: 8px 12px;
    border-radius: 8px; transition: background 0.2s;
}
.filter-radio:hover { background: var(--gray-50); }
.filter-radio input[type="radio"] { display: none; }
.radio-mark {
    width: 18px; height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 50%; position: relative;
    transition: all 0.2s; flex-shrink: 0;
}
.filter-radio input[type="radio"]:checked + .radio-mark { border-color: var(--primary); }
.filter-radio input[type="radio"]:checked + .radio-mark::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--primary); border-radius: 50%;
}
.radio-label { font-size: 14px; color: var(--gray-700); }
.filter-radio input[type="radio"]:checked ~ .radio-label { color: var(--primary); font-weight: 500; }

.filter-checkbox {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; padding: 8px 12px;
    border-radius: 8px; transition: background 0.2s;
}
.filter-checkbox:hover { background: var(--gray-50); }
.filter-checkbox input[type="checkbox"] { display: none; }
.checkbox-mark {
    width: 18px; height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 5px; position: relative;
    transition: all 0.2s; flex-shrink: 0;
}
.filter-checkbox input[type="checkbox"]:checked + .checkbox-mark {
    background: var(--primary); border-color: var(--primary);
}
.filter-checkbox input[type="checkbox"]:checked + .checkbox-mark::after {
    content: ''; position: absolute;
    top: 2px; left: 5px;
    width: 5px; height: 9px;
    border: solid white; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-label { font-size: 14px; color: var(--gray-700); }
.filter-checkbox input[type="checkbox"]:checked ~ .checkbox-label { color: var(--primary); font-weight: 500; }

.page-size-options { display: flex; gap: 8px; }
.size-btn {
    flex: 1; padding: 10px 0;
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: 8px; font-size: 14px; font-weight: 500;
    color: var(--gray-600); cursor: pointer; transition: all 0.2s;
}
.size-btn:hover { background: var(--gray-200); color: var(--gray-800); }
.size-btn.active {
    background: var(--primary); border-color: var(--primary);
    color: var(--white); box-shadow: 0 2px 4px rgba(217, 119, 6, 0.3);
}

.btn-export-full {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px 16px;
    background: var(--white); border: 1px solid var(--gray-300);
    border-radius: 8px; font-size: 14px; font-weight: 500;
    color: var(--gray-700); cursor: pointer; transition: all 0.2s;
}
.btn-export-full:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-export-full svg { flex-shrink: 0; }

.search-content { flex: 1; min-width: 0; }

/* Sort bar */
.sort-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); margin-bottom: 16px;
    box-shadow: var(--shadow); flex-wrap: wrap;
}
.sort-bar-label { font-size: 13px; color: var(--gray-500); font-weight: 500; white-space: nowrap; }
.sort-bar-options { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.sort-chip {
    display: inline-flex; align-items: center;
    padding: 5px 14px; border-radius: var(--radius-full);
    font-size: 13px; color: var(--gray-600);
    background: var(--gray-100); cursor: pointer;
    transition: all 0.2s; white-space: nowrap; user-select: none;
}
.sort-chip input { display: none; }
.sort-chip:hover { background: rgba(217, 119, 6, 0.08); color: var(--primary-dark); }
.sort-chip.active,
.sort-chip:has(input:checked) {
    background: var(--primary); color: var(--white);
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
}
.sort-bar-right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.sort-bar-time { font-size: 12px; color: var(--gray-400); white-space: nowrap; }
.sort-bar-hint { font-size: 11px; color: var(--gray-400); white-space: nowrap; }

/* Old toolbar compat */
.search-container { max-width: 900px; margin: 0 auto; }
.search-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--white); padding: 16px 20px; border-radius: var(--radius);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow);
    margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.toolbar-left { color: var(--gray-600); font-size: 14px; font-weight: 500; }
.toolbar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.toolbar-option { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); }
.toolbar-option select {
    padding: 6px 12px; border: 1px solid var(--gray-300);
    border-radius: 6px; font-size: 13px; outline: none;
    background: var(--white); color: var(--gray-700);
}
.toolbar-option input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: var(--primary);
    border: 1px solid var(--gray-300); border-radius: 4px;
}
.btn-export {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: var(--white); border: 1px solid var(--gray-300);
    border-radius: 6px; font-size: 13px; color: var(--gray-700); cursor: pointer;
    transition: all 0.2s; font-weight: 500;
}
.btn-export:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* Results */
.results-list { display: flex; flex-direction: column; gap: 16px; }
.result-item {
    background: var(--white); padding: 24px; border-radius: var(--radius);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.result-item:hover {
    transform: translateY(-2px); box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.result-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.result-title-link {
    font-size: 18px; color: var(--gray-900); font-weight: 600;
    line-height: 1.4; max-width: 100%;
}
.result-title-link:hover { text-decoration: none; color: var(--primary); }
.result-title-link:visited { color: var(--gray-600); }
.result-title-link em.hl { color: #CC0000; font-style: normal; font-weight: 700; }

.contact-icon { font-size: 16px; opacity: 0.8; cursor: help; }
.detail-link { margin-left: auto; font-size: 13px; color: var(--primary); font-weight: 500; }
.detail-link:hover { text-decoration: underline; }

.result-url-row { font-size: 13px; color: var(--success); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.result-url-row cite { font-style: normal; }

.result-snippet { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.result-snippet mark, .result-snippet em.hl { color: #CC0000; background: transparent; font-weight: 600; padding: 0; border-radius: 0; font-style: normal; }

.result-meta-row { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--gray-500); }
.meta-item { display: flex; align-items: center; gap: 4px; }
.meta-tag {
    padding: 4px 10px; background: var(--gray-100); color: var(--gray-600);
    border-radius: var(--radius-full); font-size: 12px; font-weight: 500;
}

.result-contact-row {
    background: var(--gray-50);
    margin: 16px -24px -24px; padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
    border-radius: 0 0 var(--radius) var(--radius);
    display: flex; flex-direction: column; gap: 8px;
}
.contact-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; }
.contact-label { color: var(--gray-500); font-weight: 500; }
.contact-link { color: var(--primary-dark); }
.contact-link:hover { text-decoration: underline; }
.contact-text { color: var(--gray-700); }
.contact-sep { color: var(--gray-300); margin: 0 4px; }
.contact-more { color: var(--gray-400); font-size: 12px; }

/* Pagination */
.pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 40px; padding: 20px 0;
}
.page-btn {
    min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; background: var(--white); border: 1px solid var(--gray-300);
    color: var(--gray-700); font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.page-btn:hover:not(:disabled) { background: var(--gray-50); border-color: var(--gray-400); }
.page-btn:disabled { color: var(--gray-400); cursor: not-allowed; opacity: 0.6; }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 2px 4px rgba(217, 119, 6, 0.3); }
.page-info { color: var(--gray-400); font-size: 14px; margin: 0 8px; }

/* ========== 13. MODALS ========== */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; }
.modal.show { display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); }
.modal-dialog {
    position: relative; background: var(--white); border-radius: var(--radius);
    width: 100%; max-width: 600px; max-height: 90vh;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-sm { max-width: 400px; }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
}
.modal-header h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); }
.modal-close {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; font-size: 24px; color: var(--gray-400);
    cursor: pointer; border-radius: 6px; transition: all 0.2s;
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-600); }
.modal-body { padding: 24px; overflow-y: auto; flex: 1; }
.modal-footer {
    display: flex; justify-content: flex-end; gap: 12px;
    padding: 20px 24px; border-top: 1px solid var(--gray-100);
    background: var(--gray-50); border-radius: 0 0 var(--radius) var(--radius);
}

.detail-section { margin-bottom: 24px; }
.detail-section h4 { font-size: 12px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.5px; }
.detail-content { font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.detail-item { padding: 12px 16px; background: var(--gray-50); border-radius: 8px; border: 1px solid var(--gray-100); }
.detail-item .label { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; }
.detail-item .value { font-size: 14px; color: var(--gray-900); font-weight: 500; word-break: break-all; }

.contact-detail-list { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 8px; }
.contact-detail-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.contact-detail-values { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-detail-value {
    display: inline-block; padding: 6px 12px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 6px; font-size: 13px; color: var(--gray-700);
    word-break: break-all; text-decoration: none; transition: all 0.2s;
}
a.contact-detail-value { color: var(--primary); background: var(--primary-light); border-color: transparent; }
a.contact-detail-value:hover { background: var(--primary); color: var(--white); }

/* ========== 14. VIP MODAL ========== */
.vip-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000; align-items: center; justify-content: center;
}
.vip-modal.show { display: flex; }
.vip-modal-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
}
.vip-modal-content {
    position: relative; background: #fff; border-radius: 20px;
    padding: 40px; max-width: 420px; width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.3s ease;
}
.vip-modal-icon { font-size: 48px; margin-bottom: 16px; }
.vip-modal-title { font-size: 22px; color: var(--gray-900); margin-bottom: 12px; }
.vip-modal-desc { color: var(--gray-600); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.vip-modal-contact {
    background: var(--gray-50); border-radius: 12px;
    padding: 16px; margin-bottom: 24px;
}
.vip-modal-contact p {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; color: var(--gray-700); font-size: 14px; margin-bottom: 8px;
}
.vip-modal-contact p:last-child { margin-bottom: 0; }
.vip-modal-contact strong { color: var(--primary); }
.vip-modal-buttons { display: flex; gap: 12px; justify-content: center; }
.vip-modal-buttons .btn {
    padding: 10px 24px; border-radius: var(--radius-full);
    font-size: 14px; font-weight: 500; cursor: pointer;
    transition: all 0.2s; text-decoration: none;
}
.vip-modal-buttons .btn-default { background: var(--gray-100); color: var(--gray-700); border: none; }
.vip-modal-buttons .btn-default:hover { background: var(--gray-200); }
.vip-modal-buttons .btn-vip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff; border: none;
}
.vip-modal-buttons .btn-vip:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

/* ========== 15. LOADING STATES ========== */
.loading-mask {
    display: none; position: fixed; inset: 0; z-index: 3000;
    background: rgba(8, 12, 30, 0.65); backdrop-filter: blur(12px);
    align-items: center; justify-content: center;
}
.loading-mask.show { display: flex; }

.search-loading-card {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    padding: 48px 56px 40px;
    background: linear-gradient(145deg, rgba(17,24,39,0.95), rgba(31,41,55,0.95));
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(217, 119, 6, 0.15), 0 30px 60px rgba(0,0,0,0.4);
    overflow: hidden; min-width: 320px;
}
.search-loading-glow {
    position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.search-loading-anim { width: 90px; height: 90px; margin-bottom: 28px; }
.search-loading-svg { width: 100%; height: 100%; }
.search-loading-svg .track { fill: none; stroke: rgba(255,255,255,0.04); stroke-width: 2; }
.search-loading-svg .arc {
    fill: none; stroke-width: 2.5; stroke-linecap: round;
    transform-origin: 50% 50%;
}
.arc-1 {
    stroke: var(--primary);
    stroke-dasharray: 60 192;
    animation: arcSpin 1.4s linear infinite;
    filter: drop-shadow(0 0 4px rgba(217, 119, 6, 0.6));
}
.arc-2 {
    stroke: var(--accent);
    stroke-dasharray: 40 148;
    animation: arcSpin 1.8s linear infinite reverse;
    filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.5));
}
.arc-3 {
    stroke: #FDE68A;
    stroke-dasharray: 25 100;
    animation: arcSpin 1.1s linear infinite;
    filter: drop-shadow(0 0 3px rgba(253, 230, 138, 0.5));
}
@keyframes arcSpin { to { transform: rotate(360deg); } }

.search-loading-bar-track {
    width: 220px; height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px; overflow: hidden; margin-bottom: 12px;
}
.search-loading-bar-fill {
    height: 100%; width: 0%; border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #FDE68A);
    box-shadow: 0 0 12px rgba(217, 119, 6, 0.6);
    transition: width 0.15s ease;
}
.search-loading-percent {
    font-size: 20px; font-weight: 700;
    color: var(--accent); margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}
.search-loading-text {
    font-size: 14px; color: rgba(156,163,175,0.9); letter-spacing: 0.5px;
}

.loading-inline { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 40px; color: var(--gray-500); }
.spinner-small {
    width: 20px; height: 20px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--primary); border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ========== 16. TOAST ========== */
.toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 12px 24px; background: var(--gray-900); color: var(--white);
    border-radius: 50px; font-size: 14px; font-weight: 500; z-index: 4000;
    opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.empty-state { text-align: center; padding: 80px 20px; color: var(--gray-500); }
.empty-state h3 { font-size: 18px; color: var(--gray-900); margin-bottom: 8px; font-weight: 600; }

/* ========== 17. ABOUT PAGE (OLD/COMPAT) ========== */
.page-about { background: var(--gray-50); }
.page-about .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}
.page-about .nav-link { color: var(--gray-600); }
.page-about .nav-link:hover { color: var(--primary); }
.page-about .nav-link.active { color: var(--primary); }
.page-about .user-btn { border-color: var(--gray-300); color: var(--gray-700); }
.page-about .lang-btn { border-color: var(--gray-300); color: var(--gray-600); }
.about-main { flex: 1; padding: 100px 20px 60px; }
.about-container { max-width: 900px; margin: 0 auto; }
.about-container h1 { font-size: 36px; font-weight: 800; color: var(--gray-900); margin-bottom: 40px; text-align: center; letter-spacing: 0; }

.about-section { margin-bottom: 60px; }
.about-section h2 {
    font-size: 24px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 24px; padding-bottom: 12px;
    border-bottom: 2px solid var(--primary); display: inline-block;
}
.about-section p { font-size: 16px; color: var(--gray-600); line-height: 1.8; }

.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-item {
    display: flex; gap: 20px; padding: 30px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--gray-100);
    transition: all 0.3s;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-item .feature-icon {
    font-size: 32px; background: var(--primary-light);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
}
.feature-content h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.feature-content p { font-size: 14px; color: var(--gray-600); margin: 0; }

.stats-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat-box {
    text-align: center; padding: 30px 50px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.stat-box .stat-number { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-box .stat-text { font-size: 14px; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ========== 18. DATA INFO PAGE ========== */
.page-data-info .data-info-main { padding-top: 70px; }

.page-data-info .data-hero {
    position: relative; min-height: 420px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 30%, #fef9c3 70%, #f8fafc 100%);
}
.page-data-info .data-hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.page-data-info .data-grid-lines {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(217, 119, 6, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 119, 6, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
}
.page-data-info .data-particles {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(3px 3px at 15% 25%, rgba(217, 119, 6, 0.3), transparent),
        radial-gradient(2px 2px at 35% 65%, rgba(217, 119, 6, 0.25), transparent),
        radial-gradient(3px 3px at 55% 15%, rgba(217, 119, 6, 0.2), transparent),
        radial-gradient(2px 2px at 75% 45%, rgba(217, 119, 6, 0.3), transparent),
        radial-gradient(2px 2px at 85% 85%, rgba(217, 119, 6, 0.2), transparent);
}
.page-data-info .data-hero-content {
    position: relative; z-index: 1; text-align: center;
    padding: 60px 20px; max-width: 900px;
}
.page-data-info .data-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800;
    color: var(--gray-900); margin-bottom: 20px; letter-spacing: 0;
}
.page-data-info .data-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray-600);
    line-height: 1.8; max-width: 680px; margin: 0 auto 40px;
}
.page-data-info .data-hero-stats { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.page-data-info .hero-stat {
    text-align: center; padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8); border-radius: 16px;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.1);
}
.page-data-info .hero-stat-value { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.page-data-info .hero-stat-label { display: block; font-size: 0.85rem; color: var(--gray-500); margin-top: 6px; font-weight: 500; }

.page-data-info .data-fields-section { padding: 80px 0; background: var(--white); }
.page-data-info .data-fields-section .container,
.page-data-info .contact-info-section .container,
.page-data-info .data-sale-section .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.page-data-info .section-header { text-align: center; margin-bottom: 50px; }
.page-data-info .section-tag {
    display: inline-block; padding: 8px 20px;
    background: var(--primary-light);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-dark); font-size: 0.8rem;
    font-weight: 600; letter-spacing: 1px; margin-bottom: 16px;
}
.page-data-info .data-fields-section .section-title,
.page-data-info .contact-info-section .section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 700;
    color: var(--gray-900); margin-bottom: 12px;
}
.page-data-info .section-desc {
    font-size: 1rem; color: var(--gray-500);
    max-width: 550px; margin: 0 auto; line-height: 1.7;
}

.page-data-info .fields-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px;
}
.page-data-info .field-card {
    position: relative; background: var(--gray-50);
    border: 1px solid var(--gray-200); border-radius: 16px;
    padding: 28px; transition: all 0.3s ease; overflow: hidden;
}
.page-data-info .field-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.12);
}
.page-data-info .field-card-glow {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0; transition: opacity 0.3s;
}
.page-data-info .field-card:hover .field-card-glow { opacity: 1; }
.page-data-info .field-card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(217, 119, 6, 0.15) 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.page-data-info .field-card-icon svg { width: 26px; height: 26px; stroke: var(--primary); }
.page-data-info .field-card-title { font-size: 1.15rem; font-weight: 600; color: var(--gray-900); margin-bottom: 10px; }
.page-data-info .field-card-list { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

.page-data-info .contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.page-data-info .contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.page-data-info .contact-info-content .section-tag { margin-bottom: 14px; }
.page-data-info .contact-info-content .section-title { text-align: left; margin-bottom: 16px; }
.page-data-info .contact-info-content .section-desc { text-align: left; margin: 0 0 28px 0; max-width: none; }
.page-data-info .social-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.page-data-info .social-icon {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius-full);
    color: var(--gray-700); font-size: 0.85rem; transition: all 0.3s;
}
.page-data-info .social-icon:hover {
    background: var(--primary-light); border-color: var(--primary);
    color: var(--primary-dark); transform: translateY(-2px);
}
.page-data-info .contact-info-visual {
    position: relative; height: 280px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(217, 119, 6, 0.08) 100%);
    border-radius: 24px; overflow: hidden;
}
.page-data-info .data-flow-animation { position: relative; width: 100%; height: 100%; }
.page-data-info .flow-line {
    position: absolute; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: flowLineLight 3s ease-in-out infinite;
}
.page-data-info .flow-line:nth-child(1) { top: 30%; left: 10%; width: 80%; animation-delay: 0s; }
.page-data-info .flow-line:nth-child(2) { top: 50%; left: 5%; width: 90%; animation-delay: 1s; }
.page-data-info .flow-line:nth-child(3) { top: 70%; left: 15%; width: 70%; animation-delay: 2s; }
@keyframes flowLineLight {
    0%, 100% { opacity: 0.2; transform: scaleX(0.5); }
    50% { opacity: 0.6; transform: scaleX(1); }
}
.page-data-info .flow-dot {
    position: absolute; width: 10px; height: 10px;
    background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: flowDotLight 4s ease-in-out infinite;
}
.page-data-info .flow-dot:nth-child(4) { top: 30%; animation-delay: 0s; }
.page-data-info .flow-dot:nth-child(5) { top: 50%; animation-delay: 1.3s; }
.page-data-info .flow-dot:nth-child(6) { top: 70%; animation-delay: 2.6s; }
@keyframes flowDotLight {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.page-data-info .data-sale-section { padding: 80px 0 100px; background: var(--white); }
.page-data-info .sale-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(217, 119, 6, 0.08) 100%);
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: 24px; padding: 50px; text-align: center; overflow: hidden;
}
.page-data-info .sale-card-bg { display: none; }
.page-data-info .sale-card-content { position: relative; z-index: 1; }
.page-data-info .sale-icon { font-size: 3.5rem; margin-bottom: 20px; }
.page-data-info .sale-title {
    font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
    color: var(--gray-900); margin-bottom: 14px;
}
.page-data-info .sale-desc {
    font-size: 1rem; color: var(--gray-500);
    max-width: 480px; margin: 0 auto 32px; line-height: 1.7;
}
.page-data-info .sale-contact {
    background: var(--white); border-radius: 16px;
    padding: 28px; max-width: 450px; margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.page-data-info .sale-contact h3 { font-size: 1rem; color: var(--gray-700); margin-bottom: 18px; font-weight: 600; }
.page-data-info .sale-contact-items { display: flex; flex-direction: column; gap: 12px; }
.page-data-info .sale-contact-item {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 20px; background: var(--gray-50); border-radius: 10px;
    transition: all 0.3s;
}
.page-data-info .sale-contact-item:hover { background: var(--primary-light); }
.page-data-info .contact-icon { font-size: 1.1rem; }
.page-data-info .contact-label { color: var(--gray-500); font-size: 0.9rem; }
.page-data-info .contact-value { color: var(--primary-dark); font-weight: 600; font-size: 0.95rem; }

/* ========== 19. UTILITY CLASSES ========== */
.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }
.text-dark { color: var(--gray-900); }
.text-sm { font-size: 14px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 24px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.px-1 { padding-left: 8px; padding-right: 8px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.px-3 { padding-left: 24px; padding-right: 24px; }

/* Display utilities */
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }
.d-inline-flex { display: inline-flex; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Grid utilities */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Background utilities */
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-primary { background: var(--primary); color: var(--white); }

/* Radius */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow */
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-none { box-shadow: none; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }

/* Width */
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Divider */
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 32px 0;
}

/* ========== 20. RESPONSIVE ========== */
@media (max-width: 1024px) {
    /* Search layout */
    .search-layout { flex-direction: column; }
    .search-sidebar { width: 100%; position: relative; top: 0; max-height: none; }
    .sidebar-inner { display: flex; flex-wrap: wrap; gap: 0; }
    .sidebar-section {
        flex: 1; min-width: 200px;
        border-bottom: none; border-right: 1px solid var(--gray-100);
    }
    .sidebar-section:last-child { border-right: none; }
    .sidebar-inner .stats-section { width: 100%; flex: none; }
    /* Grid utilities */
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    /* Page sections */
    .features-preview, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-detail-grid.reverse > :first-child, .product-detail-grid.reverse > :last-child { order: 0; }
    .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-container { padding: 0 16px; }
    .nav-search { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-menu {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: #fff; flex-direction: column; align-items: center;
        justify-content: center; gap: 20px; display: none; z-index: 1000;
    }
    .nav-menu.open { display: flex; }
    .nav-link { font-size: 18px; }
    .navbar-transparent .nav-menu.open { background: #111827; }
    .navbar-transparent .nav-menu.open .nav-link { color: #fff; }
    .user-name { display: none; }
    .lang-current { display: none; }
    /* Page sections */
    .features-preview, .features-grid, .products-preview { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .home-hero-section { min-height: 100svh; }
    .hero-bg .hero-image { background-position: 58% center; }
    .hero-content {
        min-height: 0;
        height: 100vh;
        height: 100svh;
        padding: 94px 18px 24px;
        gap: 22px;
    }
    .hero-copy {
        max-width: 100%;
        align-self: start;
        padding-top: 18px;
    }
    .hero-badge {
        min-height: 30px;
        padding: 5px 14px;
        font-size: 12px;
        margin-bottom: 18px;
    }
    .hero-title {
        font-size: clamp(2.45rem, 11.5vw, 3.8rem);
        margin-bottom: 18px;
    }
    .hero-subtitle {
        max-width: 92%;
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 24px;
    }
    .hero-cta-group {
        gap: 12px;
    }
    .hero-cta-group .btn {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 14px;
    }
    .hero-stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
    }
    .hero-stat-item {
        grid-template-columns: 38px minmax(0, 1fr);
        column-gap: 10px;
        padding: 12px 8px;
    }
    .hero-stat-icon {
        width: 38px;
        height: 38px;
    }
    .hero-stat-icon svg {
        width: 20px;
        height: 20px;
    }
    .hero-stat-value,
    .hero-stat-item .hero-stat-num {
        font-size: clamp(1.45rem, 7vw, 2.1rem);
    }
    .hero-stat-item .hero-stat-text {
        font-size: 12px;
        line-height: 1.3;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-content { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { min-height: 360px; padding: 116px 16px 64px; }
    .page-hero-title { font-size: 34px; }
    .page-hero-title::after { width: 92px; height: 4px; }
    .page-hero-subtitle { font-size: 16px; }
    .section:not(.features-preview-section), .dark-section { padding: 60px 0; }
    .comparison-table { font-size: 14px; }
    .comparison-table thead th, .comparison-table tbody td { padding: 12px 14px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    /* Search */
    .search-toolbar { flex-direction: column; align-items: stretch; gap: 16px; }
    .toolbar-right { justify-content: space-between; }
    .detail-grid { grid-template-columns: 1fr; }
    /* Modals */
    .modal-footer { flex-direction: column; }
    .modal-footer .btn { width: 100%; }
    /* About old */
    .feature-item { flex-direction: column; text-align: center; }
    .feature-item .feature-icon { margin: 0 auto; }
    /* Sidebar */
    .sidebar-inner { flex-direction: column; }
    .sidebar-section { border-right: none; border-bottom: 1px solid var(--gray-100); }
    .page-size-options { flex-wrap: wrap; }
    /* Grid utilities */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    /* Footer compat */
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    /* Data info */
    .page-data-info .data-hero { min-height: 380px; }
    .page-data-info .data-hero-stats { gap: 15px; }
    .page-data-info .hero-stat { padding: 15px 20px; }
    .page-data-info .hero-stat-value { font-size: 2rem; }
    .page-data-info .fields-grid { grid-template-columns: 1fr; }
    .page-data-info .contact-info-grid { grid-template-columns: 1fr; gap: 30px; }
    .page-data-info .contact-info-visual { display: none; }
    .page-data-info .sale-card { padding: 35px 20px; }
}

@media (max-width: 480px) {
    .vip-modal-content { padding: 28px 20px; }
    .hero-bg .hero-image { background-position: 62% center; }
    .hero-bg .hero-overlay {
        background:
            linear-gradient(90deg, rgba(2, 8, 13, 0.94) 0%, rgba(2, 8, 13, 0.74) 58%, rgba(2, 8, 13, 0.42) 100%),
            linear-gradient(180deg, rgba(2, 8, 13, 0.34) 0%, rgba(2, 8, 13, 0.18) 38%, rgba(2, 8, 13, 0.84) 100%);
    }
    .hero-content {
        padding-bottom: 16px;
    }
    .hero-title {
        font-size: clamp(2.18rem, 10vw, 3rem);
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-cta-group .btn {
        flex: 1 1 140px;
        justify-content: center;
    }
    .hero-stats-bar {
        padding: 8px;
    }
    .hero-stat-item {
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 8px;
        padding: 10px 6px;
    }
    .hero-stat-icon {
        width: 34px;
        height: 34px;
    }
    .hero-stat-icon svg {
        width: 18px;
        height: 18px;
    }
    .hero-stat-item .hero-stat-text {
        font-size: 11px;
    }
}

/* ========== 21. RTL SUPPORT ========== */
[dir="rtl"] .nav-menu { direction: rtl; }
[dir="rtl"] .nav-container { direction: rtl; }
[dir="rtl"] .footer-links-group a:hover,
[dir="rtl"] .footer-links-list a:hover { transform: translateX(-4px); }
[dir="rtl"] .feature-full-card:nth-child(even) { flex-direction: row; }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 40px; }
[dir="rtl"] .timeline::before { left: auto; right: 15px; }
[dir="rtl"] .timeline-item { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .timeline-item::before { left: auto; right: -33px; }

/* ========== 22. PRINT STYLES ========== */
@media print {
    .navbar,
    .site-footer,
    .footer,
    .mobile-menu,
    .bg-task-tracker,
    .toast,
    .modal,
    .vip-modal,
    .loading-mask { display: none !important; }

    body { background: white; color: black; }
    .page-hero,
    .home-hero-section,
    .hero-content-inner,
    .products-hero,
    .features-hero,
    .comparison-hero,
    .about-hero,
    .contact-hero {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        padding: 20px !important;
    }
    .page-hero-title,
    .page-hero-subtitle,
    .hero-title,
    .hero-subtitle,
    .hero-content-inner h1,
    .hero-content-inner p {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}
/* Managed page content */
.managed-page-section {
    background: #fff;
}

.managed-page-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.8;
}

.managed-page-content h2 {
    margin: 0 0 16px;
    color: var(--gray-900);
    font-size: 28px;
    line-height: 1.25;
}

.managed-page-content h3 {
    margin: 28px 0 12px;
    color: var(--gray-900);
    font-size: 22px;
}

.managed-page-content p,
.managed-page-content ul,
.managed-page-content ol {
    margin: 0 0 18px;
}

.managed-page-content a {
    color: var(--primary);
}

.managed-page-content .template-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}

.managed-page-content .template-feature-item {
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 18px;
    background: var(--gray-50);
}

.managed-page-content .template-feature-item h3 {
    margin-top: 0;
    font-size: 18px;
}

.managed-page-content .template-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 34px;
    font-size: 15px;
}

.managed-page-content .template-comparison-table th,
.managed-page-content .template-comparison-table td {
    border: 1px solid var(--gray-200);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.managed-page-content .template-comparison-table th {
    background: var(--gray-50);
    color: var(--gray-900);
}

.managed-page-content .template-stat-list,
.managed-page-content .template-contact-list {
    padding-left: 20px;
}
