:root { --bg-body: #f8fafc; --bg-card: #ffffff; --primary: #2563eb; --primary-hover: #1d4ed8; --text-main: #0f172a; --text-muted: #64748b; --border: #e2e8f0; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, sans-serif; }
body { background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 3rem; background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.logo { font-size: 1.15rem; font-weight: 800; }
.logo-badge { background: var(--primary); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; }
.logo-sub { color: var(--primary); font-weight: 600; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.lang-select { padding: 0.3rem 0.6rem; border-radius: 4px; border: 1px solid var(--border); font-size: 0.85rem; }
.hero { text-align: center; padding: 4rem 2rem 3rem; max-width: 850px; margin: 0 auto; }
.hero-badge { display: inline-block; background: #eff6ff; color: var(--primary); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.8rem; }
.text-gradient { color: #2563eb; }
.hero p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.8rem; }
.hero-btns { display: flex; justify-content: center; gap: 1rem; }
.btn-primary { background: var(--primary); color: white; border: none; padding: 0.7rem 1.2rem; border-radius: 6px; font-weight: 600; cursor: pointer; text-decoration: none; }
.btn-secondary { background: white; color: var(--text-main); border: 1px solid var(--border); padding: 0.7rem 1.2rem; border-radius: 6px; font-weight: 600; cursor: pointer; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.bg-light { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { font-size: 1.75rem; font-weight: 700; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; }
.card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.sales-card { text-align: center; padding: 1.2rem; }
.sales-avatar { width: 48px; height: 48px; background: #2563eb; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 0.8rem; }
.sales-btns { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.8rem; }
.btn-wa { background: #25D366; color: white; border: none; padding: 0.4rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; cursor: pointer; }
.btn-email { background: #f1f5f9; color: var(--text-main); border: 1px solid var(--border); padding: 0.4rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; cursor: pointer; }
.form-box { max-width: 600px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.form-box-sm { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; }
.form-row { display: flex; gap: 1rem; }
.form-group { flex: 1; margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { padding: 0.6rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9rem; }
.full-width { width: 100%; }
.form-result { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; text-align: center; }
.message-board-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }
.message-list { display: flex; flex-direction: column; gap: 0.8rem; max-height: 350px; overflow-y: auto; margin-top: 1rem; }
.msg-item { background: #f8fafc; border: 1px solid var(--border); padding: 0.8rem; border-radius: 6px; }
.msg-item .msg-user { font-weight: 700; font-size: 0.85rem; color: var(--primary); margin-bottom: 0.2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.video-wrapper video { width: 100%; border-radius: 8px; border: 1px solid var(--border); }
footer { text-align: center; padding: 2rem; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border); background: white; }
