/* ========== BAOBOSS DIM SUM — Marketing site, palette synced with CRM portal ========== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700&family=Noto+Sans+Thai:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:ital,wght@1,500&display=swap');

:root {
  /* Brand — extracted from BaoBoss Dim Sum logo (gold + crimson on black) */
  --crimson: #8B0E1F;
  --crimson-bright: #B91C2C;
  --crimson-glow: #D92F3C;
  --fire: #B8860B;
  --fire-glow: #E5B84B;
  --gold: #D4AF37;
  --gold-soft: #F0D27A;

  --bg: #09090B;
  --surface: #111113;
  --surface-2: #18181B;
  --surface-3: #1F1F23;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --glow-red: 0 0 30px rgba(139, 14, 31, 0.15);

  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans Thai', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[lang="zh"] body, html[lang="ja"] body { font-family: 'Noto Sans SC', 'Noto Sans JP', 'Plus Jakarta Sans', system-ui, sans-serif; }
html[lang="th"] body { font-family: 'Noto Sans Thai', 'Plus Jakarta Sans', system-ui, sans-serif; }
.serif-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

a { color: var(--crimson-glow); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--fire-glow); }
::selection { background: rgba(139, 14, 31, 0.4); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Header / Nav ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-width); margin: 0 auto;
}
.brand-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-link img {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
}
.brand-name {
  font-size: 16px; font-weight: 800;
  color: var(--text);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.brand-name small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--crimson-bright);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: 0.3s;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  color: #fff;
  box-shadow: var(--glow-red);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--crimson-bright), var(--crimson-glow));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(217, 47, 60, 0.3);
}
.btn-gold {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  color: #0A0A0A;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--fire-glow));
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.10), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 14, 31, 0.18), transparent 50%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  top: -100px; right: -120px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.18), transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}
.hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  bottom: -150px; left: -120px;
  background: radial-gradient(circle, rgba(139, 14, 31, 0.18), transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}
.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--fire));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .tagline-cn {
  font-size: 22px; color: var(--gold);
  letter-spacing: 0.15em; margin-bottom: 8px;
  font-weight: 500;
}
.hero .tagline-en {
  font-size: 12px; color: var(--crimson-bright);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}
.hero p.lead {
  font-size: 18px; color: var(--text-secondary);
  margin-bottom: 32px; max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.halal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px;
}
.halal-badge svg { width: 14px; height: 14px; }

/* Hero logo display */
.hero-logo-wrap {
  text-align: center;
  position: relative;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.25), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: brightness(1.1) contrast(1.1);
}

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--crimson-bright);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Cards ───────────────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139, 14, 31, 0.18), rgba(184, 134, 11, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 22px; margin-bottom: 12px; color: var(--text); font-weight: 700; }
.card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* ── Steps ───────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 48px 24px 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: var(--gold); transform: translateY(-4px); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -8px; left: 24px;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.step h4 { font-size: 18px; margin-bottom: 8px; color: var(--text); font-weight: 700; }
.step p { color: var(--text-secondary); font-size: 15px; }

/* ── Two-column ──────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.two-col p { color: var(--text-secondary); margin-bottom: 16px; }

/* ── Stats ───────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--fire));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 700;
}

/* ── Investment packages ─────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pkg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.pkg:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.pkg.featured {
  border-color: var(--crimson-bright);
  background:
    linear-gradient(180deg, rgba(139, 14, 31, 0.12), transparent 40%),
    var(--surface);
  box-shadow: var(--glow-red);
}
.pkg.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  color: #fff;
  padding: 5px 16px; font-size: 10px; font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.pkg-tier {
  color: var(--gold); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.pkg-amount {
  font-size: 48px; font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.pkg-amount small { font-size: 16px; color: var(--text-muted); font-weight: 500; -webkit-text-fill-color: var(--text-muted); }
.pkg-equity { color: var(--text-secondary); margin-bottom: 24px; font-size: 14px; }
.pkg ul { list-style: none; text-align: left; margin-bottom: 24px; flex: 1; }
.pkg li {
  padding: 10px 0; color: var(--text-secondary); font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg li:last-child { border: none; }
.pkg li::before {
  content: '✓'; color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Profit split bar ────────────────────────────────────────────── */
.split-section {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.split-section h4 {
  color: var(--gold); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.split-bar {
  display: flex;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-weight: 800; font-size: 14px;
  margin-bottom: 8px;
}
.split-bar > div {
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.split-investor {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  color: #0A0A0A;
}
.split-company {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  color: #fff;
}
.split-caption {
  color: var(--text-muted); font-size: 12px;
  display: flex; justify-content: space-between;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── Highlight list ──────────────────────────────────────────────── */
.highlight-list { list-style: none; padding: 0; }
.highlight-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
}
.highlight-list li::before {
  content: '';
  position: absolute; left: 0; top: 24px;
  width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--crimson-bright), var(--gold));
}
.highlight-list li strong { color: var(--text); }

/* ── CTA banner ──────────────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 14, 31, 0.18), transparent 60%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; position: relative; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 32px; font-size: 17px; position: relative; }
.cta-banner > .container > div { position: relative; }

/* ── Forms ───────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; margin-bottom: 6px;
  color: var(--gold); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.contact-info dt {
  color: var(--gold); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 24px; margin-bottom: 6px;
  font-weight: 700;
}
.contact-info dd { color: var(--text); font-size: 16px; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  background: #050507;
  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-grid h5 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid li a { color: var(--text-secondary); font-size: 14px; }
.footer-grid li a:hover { color: var(--gold); }
.footer-grid p { color: var(--text-secondary); font-size: 14px; margin-bottom: 12px; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-muted); font-size: 12px;
  letter-spacing: 0.05em;
}

/* ── Decorative graphics ─────────────────────────────────────────── */

/* Animated steam wisps for hero */
@keyframes steam-rise {
  0%   { transform: translateY(0)   scaleX(1);   opacity: 0;   }
  20%  { opacity: 0.7; }
  50%  { transform: translateY(-60px) scaleX(1.4); opacity: 0.4; }
  100% { transform: translateY(-120px) scaleX(0.6); opacity: 0; }
}
.steam-wisps {
  position: absolute;
  width: 200px; height: 200px;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.steam-wisps span {
  position: absolute;
  bottom: 0;
  width: 28px; height: 80px;
  background: radial-gradient(ellipse at center, rgba(244, 213, 122, 0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: steam-rise 4s ease-in-out infinite;
}
.steam-wisps span:nth-child(1) { left: 35%; animation-delay: 0s; }
.steam-wisps span:nth-child(2) { left: 50%; animation-delay: 1.3s; }
.steam-wisps span:nth-child(3) { left: 65%; animation-delay: 2.6s; }

/* Gold brushstroke divider between sections */
.brush-divider {
  display: block;
  margin: 0 auto;
  width: 240px; height: 24px;
  opacity: 0.7;
}

/* Chinese-lattice pattern background overlay */
.lattice-bg {
  position: relative;
}
.lattice-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lattice-bg > * { position: relative; z-index: 1; }

/* Red chop-seal accent (decorative) */
.chop-seal {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  border-radius: 4px;
  color: #fff;
  font-family: 'Noto Sans SC', Georgia, serif;
  font-size: 28px; font-weight: 800;
  box-shadow: 0 6px 20px rgba(139, 14, 31, 0.4);
  transform: rotate(-3deg);
  position: relative;
}
.chop-seal::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

/* Decorative gold corner ornaments */
.gold-corner {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}
.gold-corner.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.gold-corner.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.gold-corner.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.gold-corner.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Hero logo with golden glow ring + halal seal overlay */
.hero-logo-wrap {
  position: relative;
  text-align: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 110%; height: 110%;
  top: -5%; left: -5%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.30), transparent 65%);
  filter: blur(50px);
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1.0; transform: scale(1.05); }
}
/* Wraps the logo image + halal seal so the seal can pin to the image's true corner */
.logo-with-seal {
  position: relative;
  display: inline-block;
  max-width: 460px;
  width: 100%;
  z-index: 1;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 460px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: brightness(1.1) contrast(1.1);
}
.halal-seal {
  position: absolute;
  top: 4%;
  right: 4%;
  width: 22%;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.65));
  transition: transform 0.3s ease;
}
.halal-seal:hover { transform: scale(1.06) rotate(-4deg); }
@media (max-width: 700px) {
  .halal-seal { width: 26%; }
}

/* Floating dim-sum bao SVG (decorative, behind text) */
.float-bao {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}
.float-bao.tl { top: 80px; left: -40px; width: 220px; transform: rotate(-8deg); }
.float-bao.br { bottom: 60px; right: -60px; width: 280px; transform: rotate(12deg); }

/* Sign-In nav button (links to CRM portal login) */
.nav-signin {
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  transition: all 0.2s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-signin:hover {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  color: #0A0A0A !important;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}
.nav-signin svg { width: 14px; height: 14px; }

/* Language switcher (matches portal sidebar dropdown style) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  padding: 4px;
  margin-left: 16px;
}
.lang-switch select {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.05em;
}
.lang-switch select option {
  background: var(--surface);
  color: var(--text);
}

/* Tier-card chop seal accent */
.pkg .pkg-seal {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Noto Sans SC', serif;
  font-size: 18px; font-weight: 800;
  transform: rotate(-3deg);
  opacity: 0.85;
}

/* Connecting line for steps (visual flow) */
.steps-flow { position: relative; }
.steps-flow::before {
  content: '';
  position: absolute;
  top: 60px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  z-index: 0;
}
@media (max-width: 700px) { .steps-flow::before { display: none; } }

/* Dim-sum bowl SVG illustration container */
.bowl-illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.15));
}

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fade-up 0.7s ease-out backwards; }
.fade-in-2 { animation: fade-up 0.7s 0.15s ease-out backwards; }
.fade-in-3 { animation: fade-up 0.7s 0.3s ease-out backwards; }
.fade-in-4 { animation: fade-up 0.7s 0.45s ease-out backwards; }

.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { max-width: 320px; }
}
@media (max-width: 700px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0; min-height: auto; }
  .brand-link img { width: 36px; height: 36px; }
}
