/* ============================================================
   OKAIBI GLOBAL - PREMIUM DARK LUXURY STYLE
   ============================================================ */

:root {
  --bg-deepest: #080808;
  --bg-deep: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-section: #0d0d0d;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B35;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-strong: rgba(201, 168, 76, 0.25);
  --text-primary: #F0EDE8;
  --text-secondary: #A09890;
  --text-dim: #666666;
  --border: #1e1e1e;
  --border-gold: rgba(201, 168, 76, 0.2);
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
a:hover { color: var(--gold); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  position: fixed;
  width: 800px;
  height: 800px;
  background: rgba(201,168,76,0.04);
  border-radius: 50%;
  filter: blur(150px);
  top: -300px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.glow-2 {
  position: fixed;
  width: 600px;
  height: 600px;
  background: rgba(201,168,76,0.03);
  border-radius: 50%;
  filter: blur(150px);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #080808;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-name { color: var(--gold); font-weight: 800; }
.logo-sub { font-size: 0.6rem; color: var(--text-dim); display: block; letter-spacing: 0.15em; font-weight: 500; }

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

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.nav-link.active { color: var(--gold); }

.nav-btn-outline {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  transition: all 0.2s;
}

.nav-btn-outline:hover { background: var(--gold-glow); color: var(--gold); }

.nav-btn-gold {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gold);
  color: #080808;
  transition: all 0.2s;
}

.nav-btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

/* SECTIONS */
section { padding: 100px 0; position: relative; z-index: 1; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title .gold { color: var(--gold); }

.section-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; line-height: 1.8; }

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .line1 { color: var(--text-primary); }
.hero h1 .line2 { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gold);
  color: #080808;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-1px); color: #080808; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

/* Hero Visual */
.hero-visual-inner { position: relative; width: 420px; height: 420px; }

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.hero-circle-1 { width: 420px; height: 420px; top: 0; left: 0; }
.hero-circle-2 { width: 320px; height: 320px; top: 50px; left: 50px; border-color: rgba(201,168,76,0.1); }
.hero-circle-3 { width: 220px; height: 220px; top: 100px; left: 100px; border-color: rgba(201,168,76,0.08); }

.hero-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 0 80px rgba(201,168,76,0.3);
  animation: floatGold 6s ease-in-out infinite;
}

.hero-stat-card {
  position: absolute;
  background: rgba(17,17,17,0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  backdrop-filter: blur(10px);
}

.hero-stat-card .num { font-size: 1.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat-card .label { font-size: 0.72rem; color: var(--text-dim); margin-top: 4px; white-space: nowrap; }
.hero-stat-card.top-right { top: 0; right: 0; }
.hero-stat-card.bottom-left { bottom: 60px; left: -20px; }
.hero-stat-card.bottom-right { bottom: 0; right: 40px; }

/* STATS */
.stats-section {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.03); }

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.stat-accent { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.stat-item:hover .stat-accent { width: 60%; }

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

.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.about-feature:hover { border-color: var(--border-gold); background: rgba(201,168,76,0.03); }
.about-feature .icon { font-size: 1.1rem; flex-shrink: 0; }
.about-feature span { font-size: 0.875rem; color: var(--text-secondary); }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.about-card h3 { color: var(--gold); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px; }

.org-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all 0.2s;
}

.org-node:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.org-node .flag { font-size: 1.6rem; }
.org-node .info .name { font-weight: 700; font-size: 0.9rem; }
.org-node .info .sub { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

/* BUSINESS */
.business-section { background: var(--bg-section); }

.business-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.business-card:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }

.business-card-img { width: 100%; height: 160px; object-fit: cover; display: block; background: var(--bg-section); }

.business-card-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dim);
}

.business-card-body { padding: 24px; }
.business-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.business-card-body p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

.business-card-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.business-card-footer a { font-size: 0.8rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ADVANTAGES */
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.advantage-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }

.advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.advantage-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.advantage-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* GLOBAL */
.global-section { background: var(--bg-section); }

.global-content { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }

.global-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s;
}

.global-card:hover { border-color: var(--border-gold); }
.global-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.global-card .subtitle { font-size: 0.78rem; color: var(--gold); margin-bottom: 20px; }
.global-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.global-card li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); }
.global-card li::before { content: '▸'; color: var(--gold); font-size: 0.7rem; }

.global-markets {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.global-markets h3 { font-size: 0.95rem; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }

.markets-list { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.market-tag {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* BRAND */
.brand-section { text-align: center; }

.brand-box {
  max-width: 600px;
  margin: 40px auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.brand-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.brand-name { font-size: 2.5rem; font-weight: 900; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.05em; }
.brand-desc { color: var(--text-secondary); font-size: 1rem; }

/* PRODUCTS */
.products-preview-section { background: var(--bg-section); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.product-card:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }

.product-card img { width: 100%; height: 200px; object-fit: cover; background: var(--bg-section); }

.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.product-card-body p { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 12px; line-height: 1.5; }

.product-price { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.product-price .login-note { font-size: 0.8rem; color: var(--text-dim); font-weight: 400; }

.btn-view-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.2s;
}

.btn-view-small:hover { background: var(--gold-glow); }

/* FOOTER */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 60px 0 30px; }

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

.footer h4 { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.footer p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.8; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--text-dim); }

/* PAGE HERO */
.page-hero { padding: 140px 0 60px; background: var(--bg-section); border-bottom: 1px solid var(--border); }

.categories-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }

.cat-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.cat-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

/* PRODUCT DETAIL */
.product-detail-section { padding: 80px 0; }
.product-grid-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.main-product-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-product-img img { width: 100%; height: 100%; object-fit: contain; }

.thumb-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.thumb { width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border 0.2s; }
.thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.product-detail-price { font-size: 2rem; font-weight: 900; color: var(--gold); margin: 16px 0; }
.product-detail-price .login-note { font-size: 0.9rem; color: var(--text-dim); font-weight: 400; }
.product-detail-desc { color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }

.variant-group { margin-bottom: 16px; }
.variant-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: capitalize; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }

.variant-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.variant-btn:hover { border-color: var(--gold); color: var(--gold); }
.variant-btn.selected { border-color: var(--gold); background: var(--gold-glow); color: var(--gold); font-weight: 600; }

.price-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.price-summary .label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.price-summary .total { font-size: 2rem; font-weight: 900; color: var(--gold); }

/* ABOUT PAGE */
.about-full p { color: var(--text-secondary); line-height: 2; margin-bottom: 20px; font-size: 1rem; }

.scope-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all 0.2s;
}

.scope-item:hover { border-color: var(--border-gold); }
.scope-item .icon { font-size: 1.2rem; }

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
  transition: all 0.2s;
}

.contact-card:hover { border-color: var(--border-gold); }
.contact-card .icon { font-size: 1.5rem; }
.contact-card h4 { font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 0.875rem; color: var(--text-secondary); }

.contact-form .form-group { margin-bottom: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form label { font-size: 0.8rem; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; display: block; text-transform: uppercase; letter-spacing: 0.08em; }

/* AUTH */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}

.auth-card h2 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-bottom: 30px; }
.auth-card .form-group { margin-bottom: 16px; }
.auth-card input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s;
}

.auth-card input:focus { border-color: var(--gold); }
.auth-card label { font-size: 0.8rem; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; display: block; }
.auth-card .btn { width: 100%; justify-content: center; padding: 14px; font-size: 0.95rem; margin-top: 8px; }
.auth-card .switch-link { text-align: center; margin-top: 16px; font-size: 0.85rem; color: var(--text-dim); }
.auth-card .switch-link a { color: var(--gold); font-weight: 600; }

/* CHATBOT */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }

.chatbot-trigger {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
  transition: all 0.2s;
}

.chatbot-trigger:hover { background: var(--gold-light); transform: scale(1.05); }

.chatbot-window {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  height: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.open { display: flex; }

.chatbot-header {
  padding: 16px 20px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h4 { font-weight: 700; font-size: 0.95rem; }
.chatbot-close { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1.2rem; padding: 4px; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-msg.bot { background: var(--bg-section); color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--gold-glow); color: var(--gold); align-self: flex-end; border-bottom-right-radius: 4px; border: 1px solid var(--border-gold); }

.chatbot-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.chatbot-input input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.875rem;
  outline: none;
}

.chatbot-input input:focus { border-color: var(--gold); }
.chatbot-input button {
  padding: 10px 16px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: #080808;
  font-weight: 700;
  cursor: pointer;
}

/* EMPTY & LOADING */
.loading-text { color: var(--text-dim); text-align: center; padding: 60px; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-dim); }
.empty-state .icon { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.4;