:root {
    --primary: #1a5cb0;
    --primary-dark: #0d3f7a;
    --primary-light: #4a8ad4;
    --primary-lighter: #e8f1fb;
    --accent: #ff6b00;
    --accent-dark: #cc5500;
    --accent-light: #ff8c3a;
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --info: #3b82f6;
    --info-light: #dbeafe;
    --bg: #f0f4f8;
    --bg-dark: #0a1628;
    --bg-card: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 20px rgba(26,92,176,0.15);
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: all 0.15s ease;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent);
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #c1cdd9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1f3a 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-top {
    background: rgba(0,0,0,0.25);
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.header-top a:hover {
    color: #fff;
}

.header-top .divider {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.header-top .nav-user a {
    margin-left: 8px;
}

.header-main {
    padding: 0;
}

.header-main .container,
header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover {
    color: #fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,107,0,0.3);
    flex-shrink: 0;
}

.logo span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 4px;
}

.nav {
    display: flex;
    gap: 2px;
    align-items: center;
}

.nav a {
    color: rgba(255,255,255,0.8);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.nav a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.nav .nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d2b52 25%, #1a5cb0 50%, #1a5cb0 75%, #0d2b52 100%);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(26,92,176,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 60% 80%, rgba(255,255,255,0.04) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

@keyframes heroGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    position: relative;
    font-weight: 300;
    letter-spacing: 1px;
}

.search-box {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    position: relative;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px;
    transition: var(--transition);
}

.search-box:focus-within {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.search-box select {
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    cursor: pointer;
    outline: none;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px 0 0 50px;
    min-width: 90px;
    appearance: none;
    -webkit-appearance: none;
}

.search-box select option {
    background: var(--bg-dark);
    color: #fff;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    outline: none;
    min-width: 0;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-box .btn {
    position: static;
    border-radius: 50px;
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255,107,0,0.3);
    transition: var(--transition);
}

.search-box .btn:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
    transform: translateY(-1px);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: #fff;
    padding: 0;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    margin-top: -24px;
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 28px 16px;
}

.stat-item {
    position: relative;
    padding: 4px 16px;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-more {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-more:hover {
    color: var(--primary);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, #0a1628 0%, #0d3f7a 50%, #1a5cb0 100%);
    color: #fff;
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,107,0,0.1) 0%, transparent 50%);
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-banner p {
    font-size: 15px;
    opacity: 0.8;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   CARDS - PRODUCT
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    display: block;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #d4e6f9 50%, #c0d9f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 42px;
    position: relative;
    overflow: hidden;
}

.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.02) 0%, transparent 100%);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-img .badge,
.card-body .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255,107,0,0.25);
}

.card-body {
    padding: 16px 18px 18px;
}

.card-body h3 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
    line-height: 1.4;
}

.card:hover .card-body h3 {
    color: var(--primary);
}

.card-body p {
    font-size: 13px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.card-body .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.card-body .meta .tag {
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.card-body .desc {
    color: var(--text-light);
}

.card-body .model,
.card-body .company,
.card-body .products,
.card-body .location {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   COMPANY CARD
   ============================================ */
.company-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 16px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.company-card:hover::before {
    opacity: 1;
}

.company-card .avatar,
.company-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26,92,176,0.2);
}

.company-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.company-card .info,
.company-info {
    flex: 1;
    min-width: 0;
}

.company-card .info h3,
.company-card .card-body h3,
.company-name {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.company-card:hover .info h3,
.company-card:hover .card-body h3,
a.company-card:hover .company-name {
    color: var(--primary);
}

.company-card .info h3 .vip,
.company-card .card-body h3 .vip {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255,107,0,0.2);
}

.company-card .info p,
.company-card .card-body p,
.company-desc {
    font-size: 13px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    line-height: 1.6;
}

.company-card .info .tags,
.company-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.company-card .info .tags span,
.company-tags .tag,
.tag {
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.company-tags .tag-blue {
    background: #e0f2fe;
    color: #0369a1;
}

.company-card .info .tags span:hover,
.company-tags .tag:hover,
.tag:hover {
    background: var(--primary);
    color: #fff;
}

.company-industry {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}

.company-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.company-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.company-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.index-company-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px 20px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.index-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition);
}
.index-company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}
.index-company-card:hover::before {
    opacity: 1;
}
.index-company-card .card-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.index-company-card .card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}
.index-company-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.index-company-card:hover h3 {
    color: var(--primary);
}
.index-company-card .card-industry {
    display: inline-block;
    padding: 2px 10px;
    background: #e8f4fd;
    color: var(--primary);
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 8px;
}
.index-company-card .card-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.index-company-card .card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-top: 8px;
    max-height: 52px;
    overflow: hidden;
}
.index-company-card .card-cats span {
    padding: 2px 8px;
    background: #f0f5fa;
    color: #5a7a9a;
    border-radius: 3px;
    font-size: 11px;
    white-space: nowrap;
}
.index-company-card .card-location {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
}

/* ============================================
   COMPANY HEADER (detail page)
   ============================================ */
.company-header {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border: 1px solid var(--border-light);
}

.company-header .company-avatar {
    width: 88px;
    height: 88px;
    font-size: 32px;
}

.company-header .company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.company-header .company-avatar .avatar-text {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.company-header-info {
    flex: 1;
    min-width: 0;
}

.company-header-info h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.company-header-info .company-tags {
    margin-bottom: 10px;
}

.company-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-light);
}

.company-meta span,
.company-meta a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.company-header-stats {
    text-align: center;
    padding: 12px 20px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.company-header-stats .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.company-header-stats .stat-label {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   COMPANY TABS (detail page)
   ============================================ */
.company-tabs {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    background: var(--border-light);
}

.tab-link {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.tab-link:hover {
    color: var(--primary);
    background: rgba(26,92,176,0.04);
}

.tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #fff;
    font-weight: 600;
}

.tab-content {
    padding: 0;
}

.tab-pane {
    display: none;
    padding: 24px 28px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    width: 120px;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    background: var(--border-light);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    white-space: nowrap;
}

.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   NEWS CARD
   ============================================ */
.news-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
    padding-left: 28px;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text);
}

.news-card:hover h3 {
    color: var(--primary);
}

.news-card p {
    font-size: 13px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.news-card .meta {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card .meta .tag {
    font-size: 11px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.news-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-lighter);
}

.news-item-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.news-item:hover .news-item-title {
    color: var(--primary);
}

.news-item-summary {
    font-size: 13px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

/* ============================================
   NEWS DETAIL
   ============================================ */
.news-detail {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.news-detail h1 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.news-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.news-content {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}

/* ============================================
   PRODUCT CARDS (listing page)
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.product-card .product-img {
    height: 170px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #cde0f5 100%);
    position: relative;
    overflow: hidden;
}

.product-card .product-img .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-img .img-placeholder::after {
    content: '产品图';
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 500;
}

.product-card .category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26,92,176,0.25);
}

.product-card .product-info,
.product-card-body {
    padding: 14px 16px 16px;
}

.product-card .product-name,
.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card:hover .product-name,
.product-card:hover .product-card-title {
    color: var(--primary);
}

.product-card .product-model,
.product-card-model {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.product-card .product-desc,
.product-card-desc {
    font-size: 12px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-card .product-company,
.product-card .product-views {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.product-card-category {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-top: 4px;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-header {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.product-detail-header h1 {
    font-size: 24px;
    margin-bottom: 14px;
}

.product-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-light);
}

.product-meta span,
.product-meta a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-image-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.product-image-section img {
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.product-info-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.product-info-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    color: var(--text);
}

.product-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.price-unit {
    font-size: 14px;
    color: var(--text-muted);
}

.product-application,
.product-features {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.spec-table .spec-key,
.spec-table td:first-child {
    width: 140px;
    font-weight: 600;
    color: var(--text);
    background: var(--border-light);
}

/* ============================================
   CATEGORY BAR / FILTER
   ============================================ */
.category-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.category-bar .cat-item {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-bar .cat-item:hover,
.category-bar .cat-item.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26,92,176,0.25);
}

.category-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.category-filter-bar a {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    border: 1px solid var(--border);
    transition: var(--transition);
    font-weight: 500;
}

.category-filter-bar a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

.category-filter-bar a.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(26,92,176,0.2);
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
    border: 1px solid var(--border-light);
}

.filter-bar .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 180px;
}

.filter-search {
    flex: 2;
    min-width: 240px;
}

.filter-select {
    flex: 1;
    min-width: 160px;
}

.search-bar {
    margin-bottom: 20px;
}

.search-bar .search-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: none;
}

.search-bar .search-box input {
    color: var(--text);
}

.search-bar .search-box input::placeholder {
    color: var(--text-muted);
}

.search-bar .search-box select {
    color: var(--text);
    border-right-color: var(--border);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 22px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26,92,176,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(26,92,176,0.3);
    transform: translateY(-1px);
    color: #fff;
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #34d399 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16,185,129,0.2);
}

.btn-success:hover {
    box-shadow: 0 6px 20px rgba(16,185,129,0.3);
    transform: translateY(-1px);
    color: #fff;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #f87171 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239,68,68,0.2);
}

.btn-danger:hover {
    box-shadow: 0 6px 20px rgba(239,68,68,0.3);
    transform: translateY(-1px);
    color: #fff;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #fbbf24 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245,158,11,0.2);
}

.btn-warning:hover {
    box-shadow: 0 6px 20px rgba(245,158,11,0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

.btn-sm {
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 6px;
}

.btn-lg {
    padding: 13px 32px;
    font-size: 16px;
    border-radius: 10px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-control,
.input,
select.input,
.select,
select.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    background: var(--bg-card);
    color: var(--text);
    font-family: inherit;
    line-height: 1.5;
}

.form-control:focus,
.input:focus,
.select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,92,176,0.1);
    background: #fff;
}

textarea.form-control,
textarea.input {
    min-height: 120px;
    resize: vertical;
    padding: 12px 14px;
}

select.form-control,
select.input,
.select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

th {
    background: var(--border-light);
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    transition: var(--transition-fast);
}

tbody tr:nth-child(even) {
    background: #fafbfc;
}

tbody tr:hover {
    background: var(--primary-lighter);
}

.status-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: var(--success-light);
    color: var(--success);
}

.status-inactive {
    background: var(--danger-light);
    color: var(--danger);
}

.status-pending {
    background: var(--warning-light);
    color: var(--warning);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 20px 0;
    flex-wrap: wrap;
    align-items: center;
}

.pagination button,
.pagination a {
    padding: 10px 16px;
    border: 1px solid #e0e4ea;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all .25s ease;
    color: #555;
    text-decoration: none;
    min-width: 42px;
    height: 42px;
    text-align: center;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.pagination button:hover,
.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
    box-shadow: 0 2px 8px rgba(26,92,176,.1);
    transform: translateY(-1px);
}

.pagination button.active,
.pagination a.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(26,92,176,.25);
    font-weight: 600;
    transform: translateY(-1px);
}

.pagination button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    color: #bbb;
    border-color: #eee;
    background: #fafafa;
    box-shadow: none;
}

/* ============================================
   DETAIL PAGE / BREADCRUMB
   ============================================ */
.detail-page {
    padding: 30px 0;
}

.breadcrumb {
    display: flex;
    gap: 6px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--text-muted);
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.detail-header {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.detail-header h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.detail-content h2 {
    font-size: 18px;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.detail-content h2:first-child {
    margin-top: 0;
}

.detail-content p {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ============================================
   PAGE LAYOUT (sidebar + main)
   ============================================ */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    padding: 10px 0 40px;
}

.page-main {
    min-width: 0;
}

.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   SIDEBAR CARD
   ============================================ */
.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.sidebar-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    color: var(--text);
    font-weight: 700;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-light);
    font-size: 14px;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card li a {
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-card li a:hover {
    color: var(--primary);
}

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1f3a 50%, #0d1926 100%);
    color: #fff;
    padding: 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.03);
}

.sidebar-header .user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}

.sidebar-header .user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-header .user-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.sidebar-header .user-role {
    font-size: 12px;
    opacity: 0.5;
}

.dashboard-sidebar .user-info {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 10px;
}

.dashboard-sidebar .user-info .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px;
    box-shadow: 0 4px 16px rgba(26,92,176,0.3);
}

.dashboard-sidebar .user-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.dashboard-sidebar .user-info p {
    font-size: 12px;
    opacity: 0.5;
}

.sidebar-menu {
    flex: 1;
    padding: 12px 0;
}

.dashboard-sidebar .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.dashboard-sidebar .menu-item:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
}

.dashboard-sidebar .menu-item.active {
    background: rgba(26,92,176,0.15);
    color: #fff;
    border-left-color: var(--accent);
}

.menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.dashboard-main {
    flex: 1;
    padding: 28px 32px;
    background: var(--bg);
    overflow-y: auto;
    min-width: 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.dashboard-header h1 {
    font-size: 24px;
    font-weight: 700;
}

.dashboard-content {
    animation: fadeIn 0.4s ease;
}

/* ============================================
   DASHBOARD STATS GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: var(--primary-lighter);
    flex-shrink: 0;
}

.stat-card:nth-child(2) .stat-icon {
    background: var(--info-light);
}

.stat-card:nth-child(3) .stat-icon {
    background: var(--success-light);
}

.stat-card:nth-child(4) .stat-icon {
    background: var(--warning-light);
}

.stat-card .stat-info {
    flex: 1;
    min-width: 0;
}

.stat-card .stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.dash-stat {
    background: var(--bg-card);
    padding: 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.dash-stat h4 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.dash-stat .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   DASHBOARD QUICK ACTIONS
   ============================================ */
.quick-actions {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.quick-actions h2 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
}

.action-btn:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.action-icon {
    font-size: 32px;
}

/* ============================================
   DASHBOARD OLD-STYLE STATS
   ============================================ */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d3f7a 50%, #1a5cb0 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,107,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.auth-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.auth-box {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.5);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 800;
    color: var(--bg-dark);
}

.auth-box .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 14px;
}

.auth-box .footer-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-box .footer-link a {
    color: var(--primary);
    font-weight: 600;
}

.auth-box .footer-link a:hover {
    color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #060e1a 100%);
    color: rgba(255,255,255,0.6);
    padding: 48px 0 0;
    margin-top: 48px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}

.footer h3,
.footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer .logo-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.footer p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 8px;
}

.footer li a,
.footer a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    display: inline-block;
    transition: var(--transition);
}

.footer li a:hover,
.footer a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 28px;
}

.footer-info h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    display: inline-block;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-col p {
    font-size: 13px;
    margin-bottom: 6px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-dialog {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.modal-overlay.active .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-dialog .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.modal-dialog .modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.modal-dialog .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 4px 8px;
}

.modal-dialog .modal-close:hover {
    color: #333;
}

.modal-dialog .modal-body {
    padding: 0;
}

.modal-dialog .modal-footer,
.modal-dialog .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.modal h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    font-size: 20px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.4s cubic-bezier(0.16,1,0.3,1);
    min-width: 300px;
    max-width: 420px;
    font-size: 14px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.info {
    border-left: 4px solid var(--info);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty,
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty .icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty p,
.empty-state p {
    font-size: 15px;
}

/* ============================================
   LOADING
   ============================================ */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
    color: var(--text-muted);
    font-size: 14px;
    gap: 10px;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TABS
   ============================================ */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}

.tab {
    padding: 10px 22px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    font-weight: 500;
}

.tab:hover {
    color: var(--primary);
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

/* ============================================
   TAGS
   ============================================ */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 14px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-block;
}

.tag:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(26,92,176,0.3);
    display: none;
    z-index: 999;
    transition: var(--transition);
    line-height: 46px;
    text-align: center;
}

.back-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(26,92,176,0.4);
}

/* ============================================
   PARTNER LOGOS TICKER
   ============================================ */
.partner-ticker {
    overflow: hidden;
    background: var(--bg-card);
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partner-ticker-track {
    display: flex;
    gap: 40px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.partner-ticker-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d3f7a 100%);
    padding: 48px 0;
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-item .trust-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.trust-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

.trust-item p {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.5;
}

/* ============================================
   CATEGORY GRID (Homepage)
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.category-grid-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 18px 8px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45,106,159,.12);
    border-color: var(--primary);
}

.category-grid-item .cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.category-grid-item .cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.category-grid-item:hover .cat-name {
    color: var(--primary);
}

@media(max-width:1024px){.category-grid{grid-template-columns:repeat(6,1fr)}}
@media(max-width:768px){.category-grid{grid-template-columns:repeat(4,1fr);gap:10px}.category-grid-item .cat-icon{width:40px;height:40px;font-size:18px}}
@media(max-width:480px){.category-grid{grid-template-columns:repeat(3,1fr)}}

/* ============================================
   PRODUCTS SECTION (Listing page)
   ============================================ */
.products-section {
    padding-top: 32px;
}

/* ============================================
   COMPANY PRODUCTS / NEWS (detail page)
   ============================================ */
.company-products,
.company-news {
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .dashboard-stats,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .company-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

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

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        z-index: 999;
        gap: 4px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 14px 20px;
        border-radius: var(--radius);
        font-size: 16px;
    }

    .nav .nav-user {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .search-box {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 6px;
        gap: 4px;
    }

    .search-box select {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .search-box .btn {
        border-radius: var(--radius);
        width: 100%;
    }

    .stats-bar {
        margin-top: -16px;
        border-radius: var(--radius-md);
    }

    .stats-bar .container {
        flex-wrap: wrap;
        gap: 0;
        padding: 20px 12px;
    }

    .stat-item {
        flex: 1;
        min-width: 45%;
        padding: 8px 4px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-item strong {
        font-size: 22px;
    }

    .page-banner {
        padding: 32px 0 24px;
    }

    .page-banner h1 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        width: 200px;
        font-size: 13px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .detail-meta {
        flex-direction: column;
        gap: 8px;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-bar .form-group,
    .filter-search,
    .filter-select {
        min-width: 100%;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-header .company-tags {
        justify-content: center;
    }

    .company-meta {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - Small mobile
   ============================================ */
@media (max-width: 480px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-layout {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .dashboard-stats,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .company-card {
        flex-direction: column;
        text-align: center;
    }

    .company-card .avatar {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto;
    }

    .company-card .info .tags {
        justify-content: center;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .auth-box {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .modal {
        padding: 20px;
        border-radius: var(--radius-lg);
        width: 95%;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .back-top,
    .toast-container,
    .modal-overlay {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .card,
    .company-card,
    .news-card,
    .product-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

.cert-badge{display:inline-flex;align-items:center;gap:3px;background:linear-gradient(135deg,#1565c0,#0d47a1);color:#fff;font-size:11px;padding:2px 8px;border-radius:10px;font-weight:600;white-space:nowrap;vertical-align:middle;margin-left:6px;letter-spacing:0.5px}
.cert-badge::before{content:'\2714';font-size:10px}

.inquiry-float{position:fixed;right:20px;bottom:80px;z-index:9999;display:flex;flex-direction:column;gap:10px}
.inquiry-float-btn{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#2d6a9f,#1a4f7a);color:#fff;border:none;cursor:pointer;font-size:22px;box-shadow:0 4px 16px rgba(45,106,159,.4);transition:transform .2s,box-shadow .2s;display:flex;align-items:center;justify-content:center}
.inquiry-float-btn:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(45,106,159,.5)}
.inquiry-float-btn span{font-size:10px;display:block;line-height:1.2;text-align:center}
.inquiry-inline-btn{display:inline-flex;align-items:center;gap:6px;padding:8px 20px;background:linear-gradient(135deg,#ff6d00,#e65100);color:#fff;border:none;border-radius:6px;font-size:14px;cursor:pointer;font-weight:600;transition:all .2s;box-shadow:0 2px 8px rgba(255,109,0,.3)}
.inquiry-inline-btn:hover{background:linear-gradient(135deg,#e65100,#bf360c);box-shadow:0 4px 16px rgba(255,109,0,.4);transform:translateY(-1px)}
.inquiry-inline-btn::before{content:'\2709';font-size:16px}
