/* ===================================
   آکادمی ملیکا مومنی - استایل اصلی
   تم دارک | فنگ‌شویی
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold:         #B8933E;
  --gold-light:   #D4AF6A;
  --emerald:      #1E3A63;
  --emerald-mid:  #2E4A7D;
  --emerald-light:#4A6BA8;
  --deep:         #10192B;
  --deep2:        #16213D;
  --surface:      #1B2A47;
  --surface2:     #22335A;
  --text-main:    #F2EAD3;
  --text-sub:     #B7C0D6;
  --text-muted:   #7C88A6;
  --red:          #7A2436;
  --radius:       10px;
  --shadow:       0 8px 32px rgba(0,0,0,0.4);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; font-size:16px }
body {
  font-family:'Vazirmatn', sans-serif;
  background: var(--deep);
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
  padding-bottom: 80px;
}

#canvas-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

.container { max-width:1200px; margin:0 auto; padding:0 16px }
.section    { position:relative; z-index:1; padding:64px 0 }

/* ── Top Navbar ── */
.top-nav {
  position: fixed; top:0; left:0; right:0; height: 64px; z-index: 900;
  background: rgba(16,25,43,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,147,62,.2); display: flex; align-items:center;
}
.top-nav .container { display:flex; align-items:center; justify-content:space-between; width:100% }
.nav-logo { font-size:18px; font-weight:800; color:var(--gold); text-decoration:none; display:flex; align-items:center; gap:8px }
.nav-links { display:flex; gap:28px; list-style:none }
.nav-links a { color:var(--text-sub); text-decoration:none; font-size:14px; font-weight:500; transition:color .2s }
.nav-links a:hover, .nav-links a.active { color:var(--gold) }
.nav-auth { display:flex; gap:10px; align-items:center }
.btn { display:inline-flex; align-items:center; gap:6px; padding:9px 20px; border-radius:8px; font-family:inherit; font-size:14px; font-weight:600; cursor:pointer; text-decoration:none; border:none; transition:all .2s }
.btn-gold    { background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B }
.btn-outline { border:1.5px solid var(--gold); color:var(--gold); background:transparent }
.btn-outline:hover { background:rgba(184,147,62,.1) }
.btn-gold:hover { opacity:.88; transform:translateY(-1px) }
.btn-sm { padding:7px 16px; font-size:13px }
.btn-red { background:var(--red); color:#fff }
.btn:disabled { opacity:.5; cursor:not-allowed }

/* ── Bottom Nav (mobile) ── */
.bottom-nav { display:none; position:fixed; bottom:0; left:0; right:0; z-index:999;
  background:rgba(16,25,43,.97); backdrop-filter:blur(20px); border-top:1px solid rgba(184,147,62,.2);
  padding:6px 0 env(safe-area-inset-bottom,6px); }
.bn-wrap { display:flex; align-items:center; justify-content:space-around }
.bn-item { display:flex; flex-direction:column; align-items:center; gap:3px; text-decoration:none;
  color:var(--text-muted); font-size:10px; font-weight:500; padding:4px 8px; min-width:52px;
  position:relative; cursor:pointer; background:none; border:none; font-family:inherit; transition:color .2s; }
.bn-item.active, .bn-item:hover { color:var(--gold) }
.bn-icon { font-size:22px; line-height:1 }
.bn-badge { position:absolute; top:2px; right:8px; width:8px; height:8px; border-radius:50%; background:var(--red); border:1.5px solid rgba(16,25,43,.97); }
.bn-fab { width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg,var(--gold),#A0762E);
  display:flex; align-items:center; justify-content:center; font-size:24px; margin-top:-18px; flex-shrink:0;
  box-shadow:0 4px 20px rgba(184,147,62,.5); border:3px solid rgba(16,25,43,.97); cursor:pointer; text-decoration:none; }

/* ── Stories ── */
.stories-wrap{
  position:relative; z-index:2;
  width:100%;
  padding:84px 0 0;
  overflow:hidden;
}
.stories-wrap + .hero{
  padding-top:24px; /* جلوگیری از فاصله دوبل وقتی استوری بالای هیرو است */
  min-height:auto;
}
.stories-strip{
  display:flex; gap:18px;
  overflow-x:auto; overflow-y:hidden;
  padding:4px 2px 12px;
  scrollbar-width:none;
  width:100%;
}
.stories-strip::-webkit-scrollbar{display:none}
.story-item{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  text-decoration:none; flex:0 0 auto; width:74px;
  cursor:pointer;
}
.story-ring{
  width:66px; height:66px; min-width:66px; min-height:66px;
  border-radius:50%;
  padding:3px;
  /* گرادینت صورتی-بنفش-نارنجی مثل استوری اینستاگرام */
  background:linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  box-sizing:border-box;
  overflow:hidden;
  transition:transform .2s;
}
.story-item:hover .story-ring{transform:scale(1.06)}
.story-ring-inner{
  width:100%; height:100%;
  border-radius:50%;
  overflow:hidden;
  border:2.5px solid var(--deep);
  box-sizing:border-box;
  background:var(--surface);
}
.story-ring img{
  display:block;
  width:100%; height:100%;
  border-radius:50%;
  object-fit:cover;
}
.story-label{
  font-size:11px; color:var(--text-sub);
  text-align:center; max-width:74px;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}

/* ── Hero ── */
.hero { position:relative; z-index:1; min-height:100vh; display:flex; align-items:center; padding: 90px 0 60px; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center }
.hero-badge, .hero-title, .hero-sub, .hero-stats, .hero-btns {
  opacity:0; transform:translateY(18px); animation:heroFadeUp .7s ease forwards;
}
.hero-title{ animation-delay:.15s }
.hero-sub{ animation-delay:.25s }
.hero-stats{ animation-delay:.35s }
.hero-btns{ animation-delay:.45s }
.hero-img-wrap{ opacity:0; animation:heroFadeUp .8s ease forwards; animation-delay:.2s }
@keyframes heroFadeUp{ to { opacity:1; transform:translateY(0) } }
@media (prefers-reduced-motion: reduce){
  .hero-badge, .hero-title, .hero-sub, .hero-stats, .hero-btns, .hero-img-wrap{ opacity:1; transform:none; animation:none }
}
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(184,147,62,.12); border:1px solid rgba(184,147,62,.35);
  color:var(--gold-light); padding:6px 16px; border-radius:8px; font-size:13px; margin-bottom:20px; }
.hero-title { font-size:clamp(28px,4vw,52px); font-weight:800; line-height:1.3; margin-bottom:14px }
.hero-title em { font-style:normal; background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent }
.hero-sub { font-size:16px; color:var(--text-sub); line-height:1.9; margin-bottom:32px }
.hero-stats { display:flex; gap:28px; margin-bottom:36px; flex-wrap:wrap }
.stat-box { text-align:center }
.stat-num { font-size:28px; font-weight:800; color:var(--gold); display:block }
.stat-lbl { font-size:12px; color:var(--text-muted) }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap }
.hero-img-wrap { position:relative; display:flex; justify-content:center }
.hero-ring { position:absolute; border-radius:50%; border:1px solid rgba(184,147,62,.2); top:50%; left:50%; transform:translate(-50%,-50%); }
.hero-ring-1 { width:400px; height:400px; animation:spin 20s linear infinite }
.hero-ring-2 { width:330px; height:330px; border-style:dashed; animation:spin 14s linear infinite reverse }
@keyframes spin { to { transform:translate(-50%,-50%) rotate(360deg) } }
.hero-photo { width:280px; height:360px; border-radius:20px; overflow:hidden; border:2px solid rgba(184,147,62,.4);
  box-shadow:0 0 60px rgba(184,147,62,.15); position:relative; z-index:1; background:var(--surface); }
.hero-photo img { width:100%; height:100%; object-fit:cover; object-position:top center }
.hero-tag { position:absolute; bottom:-14px; right:-14px; z-index:2; background:linear-gradient(135deg,var(--gold),#A0762E);
  color:#10192B; padding:10px 16px; border-radius:14px; font-size:13px; font-weight:700; box-shadow:0 4px 16px rgba(0,0,0,.3); }
.hero-tag span { font-size:22px; font-weight:800; display:block }

/* ── Section Head ── */
.sec-head { text-align:center; margin-bottom:48px }
.eyebrow { font-size:11px; letter-spacing:3px; color:var(--gold); text-transform:uppercase; margin-bottom:10px }
.sec-head h2 { font-size:clamp(24px,3.5vw,36px); font-weight:800; margin-bottom:12px }
.sec-head p  { font-size:15px; color:var(--text-sub); max-width:540px; margin:0 auto; line-height:1.8 }
.divider { width:48px; height:3px; background:linear-gradient(90deg,var(--gold),transparent); border-radius:2px; margin:12px auto 20px }

/* ── Bio ── */
.bio-grid { display:grid; grid-template-columns:1fr 1.8fr; gap:56px; align-items:start }
.bio-certs { display:flex; flex-direction:column; gap:10px; margin-top:20px }
.cert-row { display:flex; align-items:center; gap:10px; background:rgba(184,147,62,.08); border:1px solid rgba(184,147,62,.2);
  border-radius:10px; padding:10px 14px; font-size:13px; color:var(--text-sub); }
.cert-icon { font-size:18px }
.timeline { border-right:2px solid rgba(184,147,62,.2); padding-right:20px; margin-top:24px }
.tl-item { position:relative; margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid rgba(255,255,255,.05) }
.tl-item:last-child { border-bottom:none }
.tl-dot { position:absolute; right:-29px; top:4px; width:16px; height:16px; border-radius:50%; background:var(--gold); border:3px solid var(--deep2) }
.tl-year { font-size:11px; color:var(--gold); font-weight:700; margin-bottom:3px }
.tl-item h4 { font-size:14px; font-weight:600; margin-bottom:3px }
.tl-item p  { font-size:12px; color:var(--text-muted) }

/* ── Courses Tab ── */
.tab-switch { display:inline-flex; background:var(--surface); border:1px solid rgba(184,147,62,.2); border-radius:40px; padding:4px; gap:4px; flex-wrap:wrap; justify-content:center }
.tab-btn { padding:9px 22px; border-radius:36px; border:none; font-family:inherit; font-size:14px; font-weight:600;
  cursor:pointer; transition:all .25s; color:var(--text-sub); background:transparent; }
.tab-btn.active { background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B; font-weight:700 }
.filter-chips { display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; padding:4px 2px 8px }
.filter-chips::-webkit-scrollbar { display:none }
.chip { flex-shrink:0; padding:7px 16px; border-radius:8px; border:1.5px solid rgba(184,147,62,.25); background:transparent;
  color:var(--text-sub); font-family:inherit; font-size:13px; cursor:pointer; transition:all .2s; white-space:nowrap; }
.chip.active, .chip:hover { border-color:var(--gold); color:var(--gold) }
.chip.active { background:rgba(184,147,62,.1) }

/* ── Course Card ── */
.courses-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px }
.course-card { background:var(--surface); border:1px solid rgba(184,147,62,.12); border-radius:var(--radius); overflow:hidden;
  transition:transform .25s, box-shadow .25s, border-color .25s; cursor:pointer; display:flex; flex-direction:column; }
.course-card:hover { transform:translateY(-5px); border-color:rgba(184,147,62,.4); box-shadow:var(--shadow) }
.card-thumb { height:160px; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:50px; }
.card-thumb::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 40%,rgba(16,25,43,.8)) }
.card-badge { position:absolute; top:10px; right:10px; z-index:2; font-size:10px; font-weight:700; padding:3px 10px; border-radius:20px; }
.badge-hot  { background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B }
.badge-new  { background:linear-gradient(135deg,var(--emerald-light),var(--emerald)); color:#fff }
.badge-free { background:linear-gradient(135deg,#27AE60,#1A7040); color:#fff }
.badge-vip  { background:linear-gradient(135deg,#7F77DD,#3C3489); color:#fff }
.card-disc  { position:absolute; bottom:10px; left:10px; z-index:2; width:36px; height:36px; border-radius:50%; background:var(--red);
  display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:800; color:#fff }
.card-body  { padding:16px; display:flex; flex-direction:column; flex:1 }
.card-cat   { font-size:10px; color:var(--gold); font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:6px }
.card-title { font-size:15px; font-weight:700; margin-bottom:8px; line-height:1.4 }
.card-desc  { font-size:12px; color:var(--text-sub); line-height:1.7; margin-bottom:12px; flex:1 }
.card-tags  { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:10px }
.ctag { font-size:10px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:6px; padding:3px 8px; color:var(--text-muted) }
.card-rating { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--text-muted); margin-bottom:12px }
.stars { color:var(--gold); font-size:11px }
.card-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid rgba(255,255,255,.07); padding-top:12px; margin-top:auto }
.price-old  { font-size:11px; color:var(--text-muted); text-decoration:line-through; display:block }
.price-main { font-size:18px; font-weight:800; color:var(--gold) }
.price-free { font-size:15px; font-weight:700; color:#27AE60 }

/* ── Product Card ── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px }
.product-card { background:var(--surface); border:1px solid rgba(184,147,62,.12); border-radius:var(--radius); overflow:hidden; transition:transform .25s, box-shadow .25s; }
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow) }
.prod-thumb { height:200px; overflow:hidden; background:var(--deep2); display:flex; align-items:center; justify-content:center; font-size:60px }
.prod-thumb img { width:100%; height:100%; object-fit:cover }
.prod-body { padding:14px }
.prod-title { font-size:14px; font-weight:700; margin-bottom:6px }
.prod-price { font-size:16px; font-weight:800; color:var(--gold); margin-bottom:12px }

/* ── Workshop ── */
.workshop-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px }
.ws-card { background:var(--surface); border:1px solid rgba(184,147,62,.15); border-radius:var(--radius); padding:22px; transition:transform .25s, border-color .25s; }
.ws-card:hover { transform:translateY(-4px); border-color:rgba(184,147,62,.4) }
.ws-city { display:inline-block; padding:3px 12px; border-radius:20px; font-size:11px; font-weight:700; margin-bottom:14px; background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B }
.ws-emoji { font-size:36px; margin-bottom:10px }
.ws-card h3 { font-size:16px; font-weight:700; margin-bottom:8px }
.ws-card p  { font-size:13px; color:var(--text-sub); line-height:1.7; margin-bottom:14px }
.ws-meta    { display:flex; flex-direction:column; gap:5px; margin-bottom:16px }
.ws-meta span { font-size:12px; color:var(--text-muted) }
.ws-foot { display:flex; align-items:center; justify-content:space-between; border-top:1px solid rgba(255,255,255,.07); padding-top:14px }

/* ── Result Videos Carousel ── */
.rv-carousel-wrap{position:relative}
.rv-carousel{
  display:flex; gap:16px;
  overflow-x:auto; scroll-snap-type:x mandatory;
  padding:4px 2px 12px;
  scrollbar-width:none;
}
.rv-carousel::-webkit-scrollbar{display:none}
.rv-item{
  flex:0 0 240px; scroll-snap-align:start;
  display:flex; flex-direction:column; gap:8px;
}
.rv-item iframe, .rv-item video{
  width:240px; height:420px; max-height:none;
  border-radius:16px; background:#000; border:1px solid rgba(184,147,62,.15);
}
.rv-title{font-size:12px; color:var(--text-muted); text-align:center}
.rv-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:50%;
  background:rgba(16,25,43,.85); border:1px solid rgba(184,147,62,.3);
  color:var(--gold); font-size:22px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  z-index:2;
}
.rv-prev{right:-8px}
.rv-next{left:-8px}
@media(max-width:700px){ .rv-arrow{display:none} }

/* ── Testimonials ── */
.testim-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px }
.testim-card { background:var(--surface); border:1px solid rgba(184,147,62,.12); border-radius:var(--radius); padding:24px; position:relative; overflow:hidden; }
.testim-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--emerald-light)) }
.testim-stars { color:var(--gold); font-size:15px; margin-bottom:12px; letter-spacing:2px }
.testim-text  { font-size:13px; color:var(--text-sub); line-height:1.8; font-style:italic; margin-bottom:18px }
.testim-author { display:flex; align-items:center; gap:10px }
.testim-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--emerald-mid));
  display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700; color:#10192B; flex-shrink:0 }

/* ── Stats Row ── */
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:16px }
.stats-box { text-align:center; background:var(--surface); border:1px solid rgba(184,147,62,.15); border-radius:var(--radius); padding:24px 16px }
.stats-num { font-size:36px; font-weight:800; color:var(--gold); display:block; margin-bottom:4px }
.stats-lbl { font-size:13px; color:var(--text-sub) }

/* ── جو مرموز پس‌زمینه صفحه نامبرولوژی ── */
.numero-ambient{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 500px 300px at 15% 10%, rgba(184,147,62,.10), transparent 60%),
    radial-gradient(ellipse 460px 320px at 88% 18%, rgba(93,173,226,.07), transparent 60%),
    radial-gradient(ellipse 420px 380px at 50% 100%, rgba(46,204,113,.06), transparent 60%);
}

/* ── چرخ نامبرولوژی: عنصر بصری شاخص سایت (الهام از قطب‌نمای فنگ‌شویی) ── */
.ncw-wrap{ position:relative; width:260px; height:260px; margin:0 auto 8px }
.ncw-wrap-hero{ margin-bottom:20px }
.ncw-wrap-sm{ width:120px; height:120px; margin:0 auto 14px }
.ncw-svg{ width:100%; height:100%; overflow:visible }
.ncw-rotor{ transform-origin:130px 130px; animation:ncwRotate 40s linear infinite }
.ncw-ring-outer{ fill:none; stroke:rgba(184,147,62,.28); stroke-width:1.2; stroke-dasharray:3 7 }
.ncw-ring-inner{ fill:none; stroke:rgba(184,147,62,.16); stroke-width:1 }
.ncw-line{ stroke:rgba(184,147,62,.55); stroke-width:1.4; stroke-dasharray:2 3 }
.ncw-node{ fill:var(--surface); stroke:rgba(184,147,62,.3); stroke-width:1.4 }
.ncw-node-active{ fill:var(--gold); stroke:var(--gold-light) }
.ncw-halo{ fill:rgba(184,147,62,.22); animation:ncwPulse 2.6s ease-in-out infinite }
.ncw-num{ font-size:15px; text-anchor:middle; fill:var(--text-sub); font-weight:600; font-family:inherit }
.ncw-num-active{ fill:#10192B; font-weight:800 }
.ncw-hub{ fill:var(--deep2); stroke:rgba(184,147,62,.4); stroke-width:1.5 }
.ncw-hub-overlay{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; pointer-events:none; text-align:center }
.ncw-hub-icon{ font-size:34px }
.ncw-hub-num{ font-size:36px; font-weight:800; color:var(--gold); line-height:1 }
.ncw-hub-name{ font-size:11px; color:var(--text-muted); margin-top:6px; max-width:110px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap }
@keyframes ncwRotate{ to { transform:rotate(360deg) } }
@keyframes ncwPulse{ 0%,100%{ opacity:.55; r:22 } 50%{ opacity:1; r:26 } }
@media (prefers-reduced-motion: reduce){ .ncw-rotor{ animation:none } .ncw-halo{ animation:none } }

/* ── نتیجه محاسبه: چرخ + راهنمای اعداد ── */
.numero-result-wrap{ display:flex; align-items:center; gap:36px; flex-wrap:wrap; justify-content:center }
.numero-legend{ display:flex; flex-direction:column; gap:14px; flex:1; min-width:240px; max-width:380px }
.nl-item{ display:flex; align-items:flex-start; gap:12px }
.nl-dot{ width:10px; height:10px; border-radius:50%; background:var(--gold); margin-top:6px; flex-shrink:0; box-shadow:0 0 0 3px rgba(184,147,62,.18) }
.nl-item strong{ display:block; font-size:20px; font-weight:800; color:var(--gold) }
.nl-item span{ font-size:12.5px; color:var(--text-sub); line-height:1.7 }

/* ── پاپ‌آپ محاسبه‌گر: نشانگر مرحله ── */
.calc-modal-steps{ display:flex; align-items:center; justify-content:center; gap:6px; margin-bottom:18px }
.cms-dot{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.15) }
.cms-dot.active{ background:var(--gold); box-shadow:0 0 0 3px rgba(184,147,62,.2) }
.cms-dot.done{ background:rgba(184,147,62,.5) }
.cms-track{ width:28px; height:1px; background:rgba(255,255,255,.15) }

/* ── فروش گزارش کامل نامبرولوژی: کارت گواهی‌نامه ── */
.numero-report-upsell{
  position:relative; margin-top:24px; display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap;
  background:linear-gradient(160deg,var(--surface),rgba(184,147,62,.07));
  border:1px solid rgba(184,147,62,.3); border-radius:18px; padding:26px; overflow:hidden;
}
.nru-ribbon{ position:absolute; top:14px; left:-32px; transform:rotate(-45deg); background:var(--gold); color:#10192B; font-size:11px; font-weight:800; padding:4px 40px }
.nru-icon{ width:64px; height:64px; border-radius:16px; background:linear-gradient(135deg,#2A5C3F,#10192B); display:flex; align-items:center; justify-content:center; font-size:30px; flex-shrink:0 }
.numero-report-upsell h3{ font-size:17px; font-weight:800; margin-bottom:8px }
.numero-report-upsell p{ font-size:13px; color:var(--text-muted); line-height:1.9; margin-bottom:14px }
.nru-feats{ list-style:none; padding:0; margin:0; display:grid; gap:6px }
.nru-feats li{ font-size:12.5px; color:var(--text-sub) }
.nru-buy-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:16px }
.nru-old-price{ font-size:14px; color:var(--text-muted); text-decoration:line-through }
.nru-price{ font-size:26px; font-weight:800; color:var(--gold) }

@media(max-width:700px){
  .ncw-wrap{ width:220px; height:220px }
  .numero-result-wrap{ flex-direction:column; gap:20px }
}

/* ── Support Form ── */
.support-wrap { max-width:680px; margin:0 auto }
.support-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:20px;align-items:start;max-width:900px;margin:0 auto}
.support-chat-card{text-align:center}
.support-chat-icon{width:56px;height:56px;margin:0 auto 12px;border-radius:50%;background:radial-gradient(circle at 35% 30%,rgba(232,201,123,.35),rgba(184,147,62,.08) 70%);border:1px solid rgba(184,147,62,.35);display:flex;align-items:center;justify-content:center;font-size:26px}
.support-chat-card h3{font-size:16px;font-weight:800;margin-bottom:8px}
.support-chat-status{display:flex;align-items:center;justify-content:center;gap:6px;font-size:12px;color:#2ECC71;font-weight:600;margin-bottom:14px}
.dot-online{width:8px;height:8px;border-radius:50%;background:#2ECC71;box-shadow:0 0 0 3px rgba(46,204,113,.25)}
@media(max-width:800px){ .support-grid{grid-template-columns:1fr} }
.form-card { background:var(--surface); border:1px solid rgba(184,147,62,.15); border-radius:var(--radius); padding:36px }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px }
.form-group.full { grid-column:1/-1 }
label { font-size:13px; color:var(--text-sub); font-weight:500 }
input, textarea, select { background:rgba(255,255,255,.05); border:1px solid rgba(184,147,62,.2); border-radius:10px;
  padding:11px 14px; color:var(--text-main); font-family:inherit; font-size:14px; outline:none; direction:rtl; transition:border-color .2s; width:100% }
input:focus, textarea:focus, select:focus { border-color:var(--gold) }
textarea { resize:vertical; min-height:100px }
select option { background:var(--deep) }
.form-submit { display:flex; gap:12px; justify-content:center; margin-top:20px; flex-wrap:wrap }

/* ── Footer ── */
.site-footer { background:var(--deep2); border-top:1px solid rgba(184,147,62,.15); padding:48px 0 28px; position:relative; z-index:1 }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; margin-bottom:36px }
.footer-brand h3 { font-size:20px; font-weight:800; color:var(--gold); margin-bottom:10px }
.footer-brand p  { font-size:13px; color:var(--text-muted); line-height:1.8; max-width:260px; margin-bottom:18px }
.social-links { display:flex; gap:8px }
.soc-btn { width:34px; height:34px; border-radius:50%; background:rgba(184,147,62,.1); border:1px solid rgba(184,147,62,.25);
  display:flex; align-items:center; justify-content:center; font-size:15px; text-decoration:none; transition:background .2s }
.soc-btn:hover { background:rgba(184,147,62,.25) }
.footer-col h4 { font-size:14px; font-weight:700; margin-bottom:14px }
.footer-col ul { list-style:none }
.footer-col ul li { margin-bottom:8px }
.footer-col ul a { font-size:13px; color:var(--text-muted); text-decoration:none; transition:color .2s }
.footer-col ul a:hover { color:var(--gold) }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:20px; text-align:center; font-size:13px; color:var(--text-muted) }

/* ── انیمیشن ظاهر شدن نرم هنگام اسکرول ── */
.reveal-init{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease }
.reveal-in{ opacity:1; transform:translateY(0) }
@media (prefers-reduced-motion: reduce){
  .reveal-init{ opacity:1; transform:none; transition:none }
}

/* ── جلوه درخشش نشان هیرو ── */
@keyframes heroBadgeGlow{
  0%,100% { box-shadow:0 0 0 0 rgba(184,147,62,.35) }
  50% { box-shadow:0 0 22px 4px rgba(184,147,62,.28) }
}
.hero-badge{ animation:heroFadeUp .7s ease forwards, heroBadgeGlow 3.2s ease-in-out .7s infinite }
.alert { padding:12px 16px; border-radius:10px; margin-bottom:16px; font-size:14px }
.alert-success { background:rgba(39,174,96,.15); border:1px solid rgba(39,174,96,.3); color:#2ECC71 }
.alert-error   { background:rgba(192,57,43,.15);  border:1px solid rgba(192,57,43,.3);  color:#E74C3C }
.alert-info    { background:rgba(52,152,219,.15); border:1px solid rgba(52,152,219,.3); color:#3498DB }

/* ── Mobile responsive ── */
img, video, iframe { max-width:100% }
@media(max-width:900px){
  .top-nav .nav-links, .top-nav .nav-auth { display:none }
  .bottom-nav { display:block }
  body { padding-bottom:80px }
  .hero-grid   { grid-template-columns:1fr; text-align:center }
  .hero-img-wrap { order:-1 }
  .hero-btns   { justify-content:center }
  .hero-stats  { justify-content:center }
  .bio-grid    { grid-template-columns:1fr }
  .stats-row   { grid-template-columns:1fr 1fr }
  .footer-grid { grid-template-columns:1fr 1fr }
  .form-row    { grid-template-columns:1fr }
  .workshop-grid { grid-template-columns:1fr 1fr }
}
@media(max-width:600px){
  .container { padding:0 14px }
  .hero { padding:80px 0 40px }
  .hero-ring-1, .hero-ring-2 { display:none }
  .hero-stats { gap:18px }
  .stat-num   { font-size:24px }
  .sec-head   { margin-bottom:32px }
  .sec-head h2{ font-size:22px }
  .stats-row  { grid-template-columns:1fr 1fr }
  .footer-grid { grid-template-columns:1fr; text-align:center }
  .footer-brand p { margin:0 auto 18px }
  .social-links { justify-content:center }
  .form-card  { padding:20px }
  .courses-grid  { grid-template-columns:1fr }
  .products-grid { grid-template-columns:1fr 1fr; gap:10px }
  .workshop-grid { grid-template-columns:1fr }
  .stories-wrap { padding-top:74px }
  .story-item { width:64px }
  .story-ring { width:58px; height:58px; min-width:58px; min-height:58px }
  .testim-grid { grid-template-columns:1fr }
  .calc-modal-card { padding:26px 18px 22px }
}
@media(max-width:420px){
  .nav-logo { font-size:15px }
  .hero-badge { font-size:11px; padding:5px 12px }
  .hero-title { font-size:26px }
  .hero-sub   { font-size:14px }
  .stat-box   { min-width:64px }
  .products-grid { grid-template-columns:1fr }
  .card-thumb { height:140px }
  .dash-mini-stats { gap:6px }
  .dash-mini-stat  { padding:8px 10px }
}

/* ── Admin ── */
.admin-wrap { display:grid; grid-template-columns:240px 1fr; min-height:100vh }
.sidebar-admin { background:var(--deep2); border-left:1px solid rgba(184,147,62,.15); padding:20px 0; position:sticky; top:0; height:100vh; overflow-y:auto }
.sidebar-logo { padding:0 20px 20px; border-bottom:1px solid rgba(184,147,62,.15); margin-bottom:16px }
.sidebar-logo h2 { font-size:15px; font-weight:800; color:var(--gold) }
.admin-menu a { display:flex; align-items:center; gap:10px; padding:11px 20px; color:var(--text-sub); text-decoration:none; font-size:14px; transition:background .2s, color .2s; }
.admin-menu a:hover, .admin-menu a.active { background:rgba(184,147,62,.1); color:var(--gold) }
.admin-menu .menu-icon { font-size:18px; width:22px; text-align:center }
.admin-content { padding:28px; background:var(--deep) }
.admin-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; flex-wrap:wrap; gap:12px }
.admin-header h1 { font-size:24px; font-weight:800 }
.dash-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:16px; margin-bottom:28px }
.dash-card { background:var(--surface); border:1px solid rgba(184,147,62,.15); border-radius:var(--radius); padding:20px }
.dash-card-num { font-size:32px; font-weight:800; color:var(--gold) }
.dash-card-lbl { font-size:13px; color:var(--text-muted); margin-top:4px }
.dash-card-icon { font-size:28px; margin-bottom:8px }
.admin-table { width:100%; border-collapse:collapse; font-size:14px }
.admin-table th, .admin-table td { padding:12px 14px; text-align:right; border-bottom:1px solid rgba(255,255,255,.06) }
.admin-table th { color:var(--text-muted); font-weight:600; font-size:12px; letter-spacing:.5px }
.admin-table tr:hover td { background:rgba(255,255,255,.03) }
.badge { display:inline-block; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700 }
.badge-success { background:rgba(39,174,96,.2); color:#2ECC71 }
.badge-pending { background:rgba(243,156,18,.2); color:#F39C12 }
.badge-failed  { background:rgba(192,57,43,.2);  color:#E74C3C }
.table-wrap { background:var(--surface); border:1px solid rgba(184,147,62,.12); border-radius:var(--radius); overflow:hidden; overflow-x:auto }
.table-wrap .admin-table th { background:rgba(184,147,62,.05) }
.admin-form { max-width:680px }
.section-card { background:var(--surface); border:1px solid rgba(184,147,62,.12); border-radius:var(--radius); padding:24px; margin-bottom:20px }
.login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:20px }
.login-box { width:100%; max-width:400px; background:var(--surface); border:1px solid rgba(184,147,62,.25); border-radius:18px; padding:36px }

/* ===================================
   ویجت چت آنلاین پشتیبانی
   =================================== */
#lcFab {
  position: fixed; bottom: 24px; left: 20px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),#A0762E);
  display:flex; align-items:center; justify-content:center;
  font-size: 26px; cursor:pointer; border:none;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .2s;
}
#lcFab:hover { transform: scale(1.06) }
#lcFab .lc-fab-badge {
  position:absolute; top:-2px; left:-2px; background:var(--red); color:#fff;
  font-size:10px; font-weight:800; width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; border:2px solid var(--deep);
}
#lcPanel {
  position: fixed; bottom: 92px; left: 20px; z-index: 1500;
  width: 330px; max-width: calc(100vw - 40px); height: 440px; max-height: 70vh;
  background: var(--surface); border:1px solid rgba(184,147,62,.3); border-radius: 16px;
  box-shadow: var(--shadow); display:none; flex-direction:column; overflow:hidden;
}
#lcPanel.open { display:flex }
.lc-head { padding:14px 16px; background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B; font-weight:800; display:flex; align-items:center; justify-content:space-between }
.lc-head button { background:none; border:none; font-size:16px; cursor:pointer; color:#10192B }
.lc-online-dot { display:inline-block; width:8px; height:8px; border-radius:50%; background:#2ECC71; margin-right:6px; box-shadow:0 0 0 2px rgba(46,204,113,.35) }
.lc-body { flex:1; overflow-y:auto; padding:14px; display:flex; flex-direction:column; gap:8px }
.lc-msg { max-width:80%; padding:8px 12px; border-radius:12px; font-size:13px; line-height:1.7; display:flex; flex-direction:column; gap:3px }
.lc-msg div { white-space:pre-wrap; word-break:break-word }
.lc-msg .lc-msg-time { font-size:10px; color:var(--text-muted); opacity:.8; align-self:flex-end }
.lc-msg.user  { align-self:flex-start; background:var(--surface2); border-bottom-left-radius:3px }
.lc-msg.admin { align-self:flex-end; background:rgba(184,147,62,.2); color:var(--gold-light); border-bottom-right-radius:3px }
.lc-msg.admin .lc-msg-time { align-self:flex-start }
.lc-name-step { padding:16px; display:flex; flex-direction:column; gap:10px }
.lc-name-step input { padding:10px 12px; border-radius:10px; border:1px solid rgba(255,255,255,.1); background:var(--deep2); color:var(--text-main) }
.lc-input-row { display:flex; gap:8px; padding:10px; border-top:1px solid rgba(255,255,255,.08) }
.lc-input-row input { flex:1; padding:10px 12px; border-radius:20px; border:1px solid rgba(255,255,255,.1); background:var(--deep2); color:var(--text-main) }
.lc-input-row button { background:var(--gold); color:#10192B; border:none; width:38px; height:38px; border-radius:50%; cursor:pointer; font-size:15px; flex-shrink:0 }
@media (max-width:600px){
  #lcFab { bottom:86px }
  #lcPanel { bottom:154px; left:12px; width:calc(100vw - 24px) }
}
/* وقتی نوار خرید سریع موبایل (صفحه دوره) روی صفحه هست، ویجت چت را بالاتر می‌بریم تا هم‌پوشانی نداشته باشند */
@media (max-width:900px){
  body.has-mobile-buybar #lcFab { bottom:calc(58px + env(safe-area-inset-bottom,0px) + 70px) }
  body.has-mobile-buybar #lcPanel { bottom:calc(58px + env(safe-area-inset-bottom,0px) + 138px) }
}

/* ===================================
   استایل شیک‌تر صفحات محاسبه‌گر (کوا / ارتعاش اسم)
   =================================== */
.calc-hero-icon {
  width:78px; height:78px; margin:0 auto 16px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(232,201,123,.35), rgba(184,147,62,.08) 70%);
  border:1px solid rgba(184,147,62,.35);
  display:flex; align-items:center; justify-content:center; font-size:34px;
  box-shadow:0 0 40px rgba(184,147,62,.18);
}
.calc-steps { display:flex; align-items:center; justify-content:center; gap:6px; margin:22px 0 30px; flex-wrap:wrap }
.calc-step { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--text-muted); }
.calc-step .dot { width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; border:1.5px solid rgba(255,255,255,.15); background:var(--surface2); color:var(--text-muted) }
.calc-step.done .dot { background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B; border-color:transparent }
.calc-step.active .dot { border-color:var(--gold); color:var(--gold-light) }
.calc-step.active span.lbl, .calc-step.done span.lbl { color:var(--text-main) }
.calc-step-line { width:26px; height:1.5px; background:rgba(255,255,255,.12) }
.calc-number-ring {
  width:168px; height:168px; margin:0 auto 18px; border-radius:50%; position:relative;
  background:conic-gradient(var(--gold) 0deg 360deg, transparent 0deg);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 50px rgba(184,147,62,.25);
}
.calc-number-ring::before {
  content:''; position:absolute; inset:8px; border-radius:50%; background:var(--surface);
}
.calc-number-ring .val { position:relative; z-index:1; font-size:56px; font-weight:800; color:var(--gold) }

/* ===================================
   پاپ‌آپ فرم محاسبه‌گر (کوا / ارتعاش اسم) — طراحی جدید
   =================================== */
.calc-modal-overlay {
  display:none; position:fixed; inset:0; z-index:1800;
  background:rgba(6,14,11,.78); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  align-items:center; justify-content:center; padding:16px;
}
.calc-modal-overlay.open { display:flex }
.calc-modal-card {
  width:100%; max-width:440px; max-height:88vh; overflow-y:auto;
  background:linear-gradient(165deg,var(--surface),var(--deep2));
  border:1px solid rgba(184,147,62,.35); border-radius:24px; position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(184,147,62,.08) inset;
  padding:34px 26px 28px; text-align:center;
  animation: calcModalPop .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes calcModalPop { from { transform:scale(.92); opacity:0 } to { transform:scale(1); opacity:1 } }
.calc-modal-close {
  position:absolute; top:14px; left:14px; background:rgba(255,255,255,.08); border:none;
  width:32px; height:32px; border-radius:50%; color:var(--text-main); font-size:14px; cursor:pointer;
}
.calc-modal-icon {
  width:64px; height:64px; margin:0 auto 14px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(232,201,123,.4), rgba(184,147,62,.1) 70%);
  border:1px solid rgba(184,147,62,.4); display:flex; align-items:center; justify-content:center; font-size:28px;
}
.calc-modal-card h3 { font-size:18px; font-weight:800; margin-bottom:6px }
.calc-modal-card p.sub { font-size:13px; color:var(--text-muted); margin-bottom:22px }
.calc-modal-card .form-group,
.calc-modal-card .form-row { text-align:right }
.gender-pills { display:flex; gap:10px; margin-top:4px }
.gender-pill { flex:1; position:relative }
.gender-pill input { position:absolute; opacity:0; width:100%; height:100%; cursor:pointer; margin:0 }
.gender-pill span {
  display:block; text-align:center; padding:12px; border-radius:12px; font-size:14px; font-weight:600;
  border:1.5px solid rgba(255,255,255,.12); background:var(--surface2); color:var(--text-sub); transition:.15s;
}
.gender-pill input:checked + span { border-color:var(--gold); background:rgba(184,147,62,.15); color:var(--gold-light) }
.calc-cta-btn {
  display:inline-flex; align-items:center; gap:8px; justify-content:center; margin:0 auto;
}

/* ===================================
   پنل کاربری (داشبورد) — طراحی شیک‌تر
   =================================== */
.dash-hero {
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  background:linear-gradient(135deg,var(--surface),var(--deep2));
  border:1px solid rgba(184,147,62,.25); border-radius:20px; padding:28px 30px;
  margin-bottom:24px; box-shadow:0 10px 30px rgba(0,0,0,.25);
  position:relative; overflow:hidden;
}
.dash-hero::before{ content:'☯'; position:absolute; font-size:220px; opacity:.03; top:50%; left:-20px; transform:translateY(-50%); line-height:1; pointer-events:none }
.dash-avatar {
  width:66px; height:66px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B;
  display:flex; align-items:center; justify-content:center; font-size:26px; font-weight:800;
  position:relative; z-index:1;
  box-shadow:0 0 0 3px rgba(184,147,62,.18), 0 6px 18px rgba(0,0,0,.3);
}
.dash-hero-info { flex:1; min-width:200px; position:relative; z-index:1 }
.dash-hero-info h1 { font-size:22px; font-weight:800; margin-bottom:4px }
.dash-hero-info p { font-size:13px; color:var(--text-muted) }
.dash-mini-stats { display:flex; gap:10px; flex-wrap:wrap; position:relative; z-index:1 }
.dash-mini-stat {
  background:rgba(184,147,62,.1); border:1px solid rgba(184,147,62,.25); border-radius:12px;
  padding:8px 16px; text-align:center; min-width:74px; transition:transform .2s, background .2s;
}
.dash-mini-stat:hover{ background:rgba(184,147,62,.18); transform:translateY(-2px) }
.dash-mini-stat strong { display:block; font-size:18px; font-weight:800; color:var(--gold) }
.dash-mini-stat span { font-size:11px; color:var(--text-muted) }

.dash-quick-actions{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:32px }
.cd-box{ background:var(--surface); border:1px solid rgba(184,147,62,.15); border-radius:18px; padding:24px; box-shadow:0 4px 18px rgba(0,0,0,.18) }
.dash-box{
  background:var(--surface); border:1px solid rgba(184,147,62,.15); border-radius:18px;
  padding:24px; margin-bottom:24px; box-shadow:0 6px 24px rgba(0,0,0,.18);
}
.dash-box .dash-sec-head{ margin-bottom:20px }
.dash-box .table-wrap{ margin:0 }
.dash-quick-btn{
  display:flex; align-items:center; gap:10px; background:var(--surface);
  border:1px solid rgba(184,147,62,.15); border-radius:14px; padding:14px 16px;
  text-decoration:none; color:var(--text-main); font-size:13px; font-weight:600;
  transition:transform .2s, border-color .2s, background .2s; cursor:pointer; font-family:inherit;
}
.dash-quick-btn:hover{ transform:translateY(-3px); border-color:rgba(184,147,62,.4); background:rgba(184,147,62,.06) }
.dash-quick-btn .dqb-icon{ width:38px; height:38px; border-radius:10px; background:rgba(184,147,62,.15); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0 }

.dash-sec-head {
  display:flex; align-items:center; gap:10px; margin:0 0 18px;
  padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,.08);
}
.dash-sec-head .dash-sec-icon {
  width:34px; height:34px; border-radius:10px; background:rgba(184,147,62,.15);
  display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0;
}
.dash-sec-head h2 { font-size:17px; font-weight:800; margin:0 }
.dash-sec-head .dash-sec-count {
  margin-right:auto; font-size:11px; color:var(--text-muted); background:var(--surface2);
  padding:3px 10px; border-radius:20px;
}
.dash-progress-track { width:100%; height:6px; border-radius:6px; background:var(--surface2); overflow:hidden; margin:6px 0 12px }
.dash-progress-fill { height:100%; border-radius:6px; background:linear-gradient(90deg,var(--gold),var(--gold-light)) }

@media(max-width:600px){
  .dash-hero{ flex-direction:column; text-align:center; padding:24px 20px }
  .dash-hero-info{ text-align:center }
  .dash-mini-stats{ width:100%; justify-content:center }
  .dash-mini-stat{ flex:1; min-width:0 }
  .dash-hero > a.btn{ width:100%; justify-content:center }
  .dash-quick-actions{ grid-template-columns:1fr 1fr }
  .dash-box{ padding:16px }
}
@media(max-width:420px){
  .dash-quick-actions{ grid-template-columns:1fr }
}

/* ═══════════════════════════════════════════════════════════
   NUMEROLOGY REDESIGN v2 — richer visual language
   ═══════════════════════════════════════════════════════════ */

/* Intro trust chips */
.numero-trust-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin:0 0 30px }
.numero-trust-chip{ display:flex; align-items:center; gap:6px; font-size:12.5px; color:var(--text-sub);
  background:rgba(184,147,62,.08); border:1px solid rgba(184,147,62,.22); padding:8px 16px; border-radius:8px }
.numero-trust-chip b{ color:var(--gold-light) }

/* Floating number badges around the intro wheel */
.ncw-orbit{ position:relative; width:260px; height:260px; margin:0 auto }
.ncw-orbit-num{
  position:absolute; width:34px; height:34px; border-radius:50%;
  background:var(--surface2); border:1px solid rgba(184,147,62,.3); color:var(--text-muted);
  display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700;
  animation:ncwFloat 5s ease-in-out infinite;
}
@keyframes ncwFloat{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-8px) } }
@media (prefers-reduced-motion: reduce){ .ncw-orbit-num{ animation:none } }

/* Result — stat cards instead of plain legend list */
.numero-result-head{ text-align:center; margin-bottom:26px }
.numero-name-pill{ display:inline-flex; align-items:center; gap:8px; background:rgba(184,147,62,.1);
  border:1px solid rgba(184,147,62,.3); padding:6px 18px; border-radius:8px; font-size:13px; color:var(--gold-light) }

.numero-stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:6px }
.numero-stat-card{
  background:linear-gradient(165deg,var(--surface),var(--deep2)); border:1px solid rgba(184,147,62,.18);
  border-radius:18px; padding:20px 12px; text-align:center; position:relative; overflow:hidden;
  transition:transform .25s, border-color .25s;
}
.numero-stat-card:hover{ transform:translateY(-4px); border-color:rgba(184,147,62,.45) }
.numero-stat-card::before{ content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--emerald-light)) }
.nsc-icon{ font-size:20px; margin-bottom:4px }
.nsc-num{ font-size:32px; font-weight:800; color:var(--gold); line-height:1; display:block; margin-bottom:8px }
.nsc-label{ font-size:12.5px; font-weight:700; margin-bottom:4px; color:var(--text-main) }
.nsc-desc{ font-size:11px; color:var(--text-muted); line-height:1.6 }
@media(max-width:700px){ .numero-stats-grid{ grid-template-columns:repeat(2,1fr) } }

/* Insight / interpretation card */
.numero-insight-card{
  background:linear-gradient(160deg,rgba(184,147,62,.08),transparent 60%),var(--surface);
  border:1px solid rgba(184,147,62,.25); border-radius:20px; padding:28px; margin-top:26px; position:relative;
}
.numero-insight-card .nic-tag{ display:inline-block; background:rgba(184,147,62,.15); border:1px solid rgba(184,147,62,.3);
  color:var(--gold-light); font-size:12px; font-weight:700; padding:5px 16px; border-radius:20px; margin-bottom:18px }
.nic-row{ display:flex; gap:12px; margin-bottom:14px; align-items:flex-start; text-align:right }
.nic-row:last-child{ margin-bottom:0 }
.nic-ic{ width:30px; height:30px; border-radius:9px; background:rgba(184,147,62,.15); display:flex; align-items:center;
  justify-content:center; font-size:14px; flex-shrink:0 }
.nic-row p{ font-size:13.5px; color:var(--text-sub); line-height:1.9; margin:0 }
.nic-row strong{ color:var(--text-main) }
.numero-recalc-link{ display:inline-block; margin-top:20px; font-size:13px; color:var(--gold) }

/* Homepage numerology teaser v2 */
.numero-promo-v2{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:36px; align-items:center;
  background:linear-gradient(160deg,var(--surface),var(--deep2)); border:1px solid rgba(184,147,62,.25);
  border-radius:24px; padding:40px; box-shadow:0 10px 40px rgba(0,0,0,.25); position:relative; overflow:hidden;
}
.numero-promo-v2::before{ content:'☯'; position:absolute; font-size:260px; opacity:.03; left:-40px; top:50%;
  transform:translateY(-50%); pointer-events:none; line-height:1 }
.npv2-preview{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:20px 0 24px }
.npv2-chip{ background:rgba(184,147,62,.08); border:1px solid rgba(184,147,62,.2); border-radius:12px;
  padding:10px 12px; font-size:11.5px; color:var(--text-sub); display:flex; align-items:center; gap:8px }
.npv2-chip b{ color:var(--gold); font-size:15px }
@media(max-width:760px){
  .numero-promo-v2{ grid-template-columns:1fr; text-align:center; padding:30px 22px }
  .npv2-preview{ max-width:360px; margin-inline:auto }
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD REDESIGN v2 — richer user panel
   ═══════════════════════════════════════════════════════════ */
.dash-welcome-badge{ display:inline-flex; align-items:center; gap:6px; background:rgba(184,147,62,.12);
  border:1px solid rgba(184,147,62,.3); color:var(--gold-light); font-size:11.5px; font-weight:700;
  padding:4px 12px; border-radius:20px; margin-bottom:8px }

.dash-course-status{ position:absolute; top:10px; left:10px; z-index:2; font-size:10px; font-weight:700;
  padding:3px 10px; border-radius:20px }
.dash-status-done{ background:linear-gradient(135deg,#27AE60,#1A7040); color:#fff }
.dash-status-progress{ background:linear-gradient(135deg,var(--gold),#A0762E); color:#10192B }
.dash-status-new{ background:rgba(255,255,255,.1); color:var(--text-sub); border:1px solid rgba(255,255,255,.15) }

.dash-empty{ grid-column:1/-1; text-align:center; padding:44px 20px; background:var(--surface2);
  border:1px dashed rgba(184,147,62,.25); border-radius:16px }
.dash-empty-icon{ font-size:34px; margin-bottom:10px; opacity:.7 }
.dash-empty p{ font-size:13px; color:var(--text-muted); margin-bottom:16px }

.dash-tickets-card{ background:var(--surface2); border:1px solid rgba(255,255,255,.06); border-radius:12px;
  padding:14px 16px; margin-bottom:10px; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap }
.dash-tickets-card:last-child{ margin-bottom:0 }
.dtc-subject{ font-size:13.5px; font-weight:700; margin-bottom:3px }
.dtc-msg{ font-size:12px; color:var(--text-muted) }
.dtc-meta{ display:flex; align-items:center; gap:10px; flex-shrink:0 }
.dtc-date{ font-size:11px; color:var(--text-muted) }

@media(max-width:600px){
  .dash-tickets-card{ flex-direction:column; align-items:flex-start }
}
