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

:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --accent: #0891b2;
    --accent-warm: #f59e0b;
    --dark: #f8fafc;
    --dark2: #f1f5f9;
    --dark3: #e2e8f0;
    --surface: #eef2f7;
    --white: #1e293b;
    --gray: #64748b;
    --gray-light: #475569;
    --radius: 24px;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== CANVAS ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    z-index: 10;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 4px 24px rgba(79, 70, 229, 0.3);
}

.logo-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.lang-toggle {
    display: flex;
    gap: 2px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 18px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    color: var(--gray);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 2px 16px rgba(79, 70, 229, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 70%, rgba(79, 70, 229, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
    box-shadow: 0 0 12px var(--accent);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -3px;
    animation: fadeInUp 1s ease 0.2s both;
    color: #0f172a;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: clamp(17px, 2vw, 22px);
    color: var(--gray);
    margin-bottom: 56px;
    line-height: 1.9;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 48px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 40px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.06);
    transform: translateY(-4px);
    color: var(--primary);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 100px;
    background: var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stat {
    padding: 48px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.hero-stat:hover {
    background: rgba(79, 70, 229, 0.06);
}

.hero-stat .num {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.hero-stat .label {
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 3px;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 0 100px;
}

.page-banner .hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(79, 70, 229, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}

.page-banner h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    color: #0f172a;
}

.page-banner p {
    font-size: 20px;
    color: var(--gray);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-top: 28px;
    font-size: 14px;
    color: var(--gray);
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    padding: 160px 0;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
}

.section-tag {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--primary);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: #0f172a;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== PRODUCT CARDS (with logos) ===== */
.product-category {
    margin-bottom: 120px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.category-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.25);
}

.category-title h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.category-title h3 span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.04), rgba(6, 182, 212, 0.02));
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 24px 80px rgba(79, 70, 229, 0.1);
}

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

.product-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.product-logo img {
    max-width: 160px;
    max-height: 64px;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.4s;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card:hover .product-logo img {
    opacity: 1;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

.product-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    color: #0f172a;
}

.product-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.product-card .card-arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    transition: all 0.4s;
    z-index: 1;
}

.product-card:hover .card-arrow {
    background: var(--primary);
    color: white;
    transform: translate(4px, -4px);
}

/* ===== HOME PRODUCT CARDS ===== */
.home-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.home-product-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 48px 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.home-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.home-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
}

.home-product-card:hover::after {
    transform: scaleX(1);
}

.home-product-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 28px;
}

.home-product-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

.home-product-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.home-product-card .brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.home-product-card .brands span {
    padding: 6px 14px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray);
}

.home-product-card .link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.home-product-card .link:hover {
    color: var(--accent);
}

/* ===== BRAND LOGO SHOWCASE ===== */
.brand-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.brand-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.brand-item:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.12);
}

.brand-item img {
    max-width: 120px;
    max-height: 48px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.4s;
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.news-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.news-body {
    padding: 32px;
}

.news-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.news-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #0f172a;
}

.news-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 28px;
    letter-spacing: -1px;
    color: #0f172a;
}

.about-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 2;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.3s;
}

.about-feature:hover {
    border-color: rgba(79, 70, 229, 0.2);
    background: rgba(79, 70, 229, 0.04);
}

.about-feature-icon {
    font-size: 24px;
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #0f172a;
}

.about-feature p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-visual-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-visual-item:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(79, 70, 229, 0.08);
}

.about-visual-item .number {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-visual-item .label {
    font-size: 13px;
    color: var(--gray);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info {
    background: linear-gradient(160deg, #ffffff, #f0f4ff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 36px;
    color: #0f172a;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 36px;
    color: #0f172a;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== CTA ===== */
.cta-section {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -1px;
    color: #0f172a;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    background: #f1f5f9;
}

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

/* ===== BRAND PAGE ===== */
.brand-hero {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.brand-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 16px 48px rgba(79, 70, 229, 0.08);
}

.feature-card .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.brand-auth {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 60px 48px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.brand-auth h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0f172a;
}

.brand-auth p {
    font-size: 16px;
    color: var(--gray);
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-list-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-list-item:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 16px 48px rgba(79, 70, 229, 0.08);
}

.product-list-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.product-list-item p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LANGUAGE ===== */
[data-lang="en"] { display: none; }
[data-lang-inline="en"] { display: none; }
body.en [data-lang="zh"] { display: none; }
body.en [data-lang="en"] { display: block; }
body.en [data-lang-inline="zh"] { display: none; }
body.en [data-lang-inline="en"] { display: inline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .home-products { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .brand-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .section { padding: 100px 0; }
    .hero h1 { letter-spacing: -1px; }
    .hero-stats { grid-template-columns: 1fr 1fr; margin-top: 60px; }
    .hero-stat { padding: 32px 16px; }
    .hero-stat .num { font-size: 36px; }
    .product-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-visual { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .brand-showcase { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* Mobile menu */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 5;
}

.nav-links.open a {
    font-size: 24px;
    color: #0f172a;
}
