
:root {
    --primary: #1a1a1a;
    --secondary: #000000;
    --accent: #B8860B;
    --bg: #ffffff;
    --text: #1a1a1a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* Time bar */
.time-bar {
    background: var(--secondary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}
.time-bar .clock { font-weight: 600; color: var(--accent); }

/* Header */
header { background: #fff; border-bottom: 1px solid #e0e0e0; position: sticky; top: 0; z-index: 100; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary); }
.logo span { color: var(--accent); }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { color: var(--text); font-weight: 500; }
nav a:hover { color: var(--primary); text-decoration: none; }

/* Footer */
footer { background: #1a1a1a; color: #ccc; padding: 50px 0 20px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; margin-bottom: 15px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #999; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #666; }

/* Common sections */
section { padding: 60px 0; }
.section-title { font-size: 32px; margin-bottom: 20px; color: var(--primary); }
.section-desc { font-size: 16px; color: #666; margin-bottom: 40px; max-width: 700px; }
.cta-btn { display: inline-block; padding: 14px 36px; background: var(--primary); color: #fff; border-radius: 4px; font-weight: 600; margin-top: 20px; }
.cta-btn:hover { background: var(--secondary); text-decoration: none; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0; }
.feature-card { padding: 30px; background: #f8f9fa; }
.feature-card h3 { margin-bottom: 12px; color: var(--primary); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.step { text-align: center; padding: 30px 20px; background: #fff; border: 1px solid #e0e0e0; }
.step-num { width: 50px; height: 50px; background: var(--primary); color: #fff; border-radius: 50%; line-height: 50px; font-size: 20px; font-weight: 700; margin: 0 auto 15px; }
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
.faq-item h3 { font-size: 18px; margin-bottom: 10px; }


.hero { background: #000; color: #fff; padding: 100px 0; text-align: center; }
.hero h1 { font-size: 48px; font-weight: 300; letter-spacing: 2px; }
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #e0e0e0; margin: 60px 0; }
.biz-card { background: #fff; padding: 40px 25px; }
.biz-card h3 { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.insight-list { margin: 50px 0; }
.insight-item { padding: 25px 0; border-bottom: 1px solid #e0e0e0; }
.insight-date { color: #888; font-size: 13px; }
.global-offices { background: #f5f5f5; padding: 50px 0; margin: 50px 0; }


@media (max-width: 768px) {
    .industry-grid, .solution-grid, .product-cols, .scenario-grid,
    .product-grid, .biz-grid, .progress-grid, .tech-cards, .news-grid,
    .cat-grid, .feature-grid, .steps, .footer-grid {
        grid-template-columns: 1fr !important;
    }
    nav ul { flex-direction: column; gap: 10px; }
}
