/* =========================================================
   AstroBNN.pro — Design System
   Dark Cosmic Indigo (default) + Day mode via [data-theme="light"]
   Navy #0d1424 | Gold #F0D068 | Purple #6c3ebf | Teal #3ecfb0
   ========================================================= */

:root {
  --bg:          #0d1424;
  --bg-card:     rgba(255,255,255,.04);
  --bg-card-hover: rgba(255,255,255,.07);
  --surface:     #111c2e;
  --border:      rgba(255,255,255,.08);
  --border-gold: rgba(240,208,104,.25);
  --gold:        #F0D068;
  --gold-dark:   #c9a82c;
  --purple:      #6c3ebf;
  --purple-light:#a78bfa;
  --teal:        #3ecfb0;
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,.55);
  --text-dim:    rgba(255,255,255,.35);
  --dark:        #012250;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 2px 20px rgba(0,0,0,.4);
  --shadow-md:   0 4px 32px rgba(0,0,0,.5);
  --shadow-gold: 0 4px 24px rgba(240,208,104,.2);
  --nav-bg:      #080f1a;
  --footer-bg:   #080f1a;
}

/* ══════════════════════════════════════════════════════
   DAY / LIGHT MODE  — Apple-inspired: clean, bright, high contrast
   ══════════════════════════════════════════════════════ */
[data-theme="light"] {
  --bg:            #f5f5f7;   /* Apple page grey */
  --bg-card:       #ffffff;
  --bg-card-hover: #fafafa;
  --surface:       #ffffff;
  --border:        rgba(0,0,0,.10);
  --border-gold:   rgba(52,147,95,.3);
  --gold:          #34935F;   /* green — consistent across all pages */
  --gold-dark:     #2a7a4f;
  --purple:        #5b30b0;
  --purple-light:  #7c5ce0;
  --teal:          #0a8a75;
  --text:          #1d1d1f;   /* Apple near-black */
  --text-muted:    #6e6e73;   /* Apple secondary text */
  --text-dim:      #aeaeb2;   /* Apple tertiary text */
  --shadow:        0 2px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-md:     0 6px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-gold:   0 4px 20px rgba(52,147,95,.15);
  --nav-bg:        rgba(255,255,255,.92);
  --footer-bg:     #e8e8ed;
}

/* ── Body ── */
[data-theme="light"] body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 1100px 900px at -8% -4%,  rgba(91,48,176,.16)   0%, transparent 58%),
    radial-gradient(ellipse  800px 700px at 108%  8%,  rgba(240,208,104,.14) 0%, transparent 54%),
    radial-gradient(ellipse  700px 600px at 60%  110%, rgba(10,138,117,.12)  0%, transparent 58%),
    radial-gradient(ellipse  600px 500px at 50%   45%,  rgba(91,48,176,.08)   0%, transparent 65%);
  background-attachment: fixed;
  color: var(--text);
}

/* ── Text shimmer (hero headlines) ── */
@keyframes shimmer-x{0%{background-position:200%}100%{background-position:-200%}}
.text-shimmer{
  background:linear-gradient(90deg,#E7C25A 0%,#f5e088 40%,#E7C25A 60%,#c9a63e 100%);
  -webkit-text-fill-color:transparent;background-size:200%;
  -webkit-background-clip:text;background-clip:text;
  animation:4s linear infinite shimmer-x;
}
[data-theme="light"] .text-shimmer{
  background:linear-gradient(90deg,#9a7200 0%,#c49a00 40%,#9a7200 60%,#7a5800 100%) 0 0/200%;
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
  animation:4s linear infinite shimmer-x;
}

/* ── Announce bar ── */
[data-theme="light"] .announce-bar {
  background: linear-gradient(90deg, rgba(180,140,20,.15) 0%, rgba(240,208,104,.18) 100%);
  border-color: rgba(180,140,20,.3);
  color: #5a3e00;
}
[data-theme="light"] .announce-bar a { color: #7a5400; font-weight: 700; }

/* ── Nav ── */
[data-theme="light"] .site-nav {
  background: var(--nav-bg);
  border-color: rgba(0,0,0,.1);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
[data-theme="light"] .nav-links a { color: #3d3d3f; }
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active { background: rgba(0,0,0,.06); color: #1d1d1f; }
[data-theme="light"] .nav-links a.active-learn { background: rgba(52,147,95,.1); color: var(--gold); }
[data-theme="light"] .nav-admin-link { color: #6e6e73; border-color: rgba(0,0,0,.15); }
[data-theme="light"] .nav-admin-link:hover { color: var(--gold); border-color: rgba(52,147,95,.4); }
[data-theme="light"] .nav-dropdown {
  background: #ffffff;
  border-color: rgba(0,0,0,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
[data-theme="light"] .nav-dropdown a { color: #3d3d3f; }
[data-theme="light"] .nav-dropdown a:hover { background: rgba(52,147,95,.08); color: var(--gold); }
[data-theme="light"] .nav-cta-btn { background: var(--purple); color: #fff; }
[data-theme="light"] .nav-cta-btn:hover { opacity: .9; }

/* ── Page hero ── */
[data-theme="light"] .page-hero::before {
  background: radial-gradient(ellipse, rgba(91,48,176,.06) 0%, transparent 70%);
}
[data-theme="light"] .page-hero h1 { color: #1d1d1f; }
[data-theme="light"] .page-hero p  { color: #6e6e73; }
[data-theme="light"] .page-hero .breadcrumb { color: #aeaeb2; }
[data-theme="light"] .page-hero .breadcrumb a { color: #6e6e73; }

/* ── Section heads ── */
[data-theme="light"] .sec-head h2 { color: #1d1d1f; }
[data-theme="light"] .sec-head p  { color: #6e6e73; }
[data-theme="light"] .sec-label   { color: var(--gold); }
[data-theme="light"] .section-dark { background: #ebebf0; }

/* ── Buttons ── */
[data-theme="light"] .btn-gold  { background: var(--gold); color: #ffffff; box-shadow: 0 2px 14px rgba(52,147,95,.25); }
[data-theme="light"] .btn-gold:hover { background: #2a7a4f; }
[data-theme="light"] .btn-ghost { color: #1d1d1f; border-color: rgba(0,0,0,.22); }
[data-theme="light"] .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Course cards ── */
[data-theme="light"] .course-card {
  background: #ffffff;
  border-color: rgba(0,0,0,.09);
  box-shadow: var(--shadow);
}
[data-theme="light"] .course-card:hover {
  background: #ffffff;
  border-color: rgba(52,147,95,.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
[data-theme="light"] .course-card.featured {
  border-color: rgba(52,147,95,.4);
  box-shadow: var(--shadow-gold);
}
[data-theme="light"] .cc-thumb { background: linear-gradient(135deg,#e8e4f4,#d4cef0); }
[data-theme="light"] .cc-badge { background: var(--gold); color: #fff; }
[data-theme="light"] .cc-tag   { color: #aeaeb2; }
[data-theme="light"] .cc-title { color: #1d1d1f; }
[data-theme="light"] .cc-desc  { color: #6e6e73; }
[data-theme="light"] .cc-meta span { color: #aeaeb2; }
[data-theme="light"] .cc-price .amount { color: var(--gold); }
[data-theme="light"] .cc-price .old    { color: #aeaeb2; }
[data-theme="light"] .cc-price .membership { background: rgba(10,138,117,.1); color: var(--teal); border-color: rgba(10,138,117,.2); }
[data-theme="light"] .cc-cta { border-color: rgba(52,147,95,.35); color: var(--gold); }
[data-theme="light"] .cc-cta:hover,
[data-theme="light"] .course-card.featured .cc-cta { background: var(--gold); color: #fff; }

/* ── Plan cards ── */
[data-theme="light"] .plan-card {
  background: #ffffff;
  border-color: rgba(0,0,0,.09);
  box-shadow: var(--shadow);
}
[data-theme="light"] .plan-card.featured {
  border-color: rgba(52,147,95,.35);
  box-shadow: 0 6px 32px rgba(52,147,95,.14);
}
[data-theme="light"] .plan-tier   { color: #aeaeb2; }
[data-theme="light"] .plan-price  { color: #1d1d1f; }
[data-theme="light"] .plan-price sup { color: var(--gold); }
[data-theme="light"] .plan-price .per { color: #6e6e73; }
[data-theme="light"] .plan-desc   { color: #6e6e73; }
[data-theme="light"] .plan-was    { color: #aeaeb2; }
[data-theme="light"] .plan-divider { border-color: rgba(0,0,0,.08); }
[data-theme="light"] .plan-feats li { color: #3d3d3f; }
[data-theme="light"] .plan-feats .y { color: var(--teal); }
[data-theme="light"] .plan-feats .n { color: #c7c7cc; }
[data-theme="light"] .plan-cta { border-color: rgba(52,147,95,.3); color: var(--gold); }
[data-theme="light"] .plan-cta:hover,
[data-theme="light"] .plan-card.featured .plan-cta { background: var(--gold); color: #fff; }
[data-theme="light"] .plan-best { background: var(--gold); color: #fff; }

/* ── Billing toggle ── */
[data-theme="light"] .toggle-label       { color: #aeaeb2; }
[data-theme="light"] .toggle-label.active{ color: #1d1d1f; }
[data-theme="light"] .toggle-track       { background: rgba(0,0,0,.15); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .toggle-track.yearly{ background: var(--purple); }
[data-theme="light"] .save-badge         { background: var(--teal); color: #fff; }

/* ── Feature comparison table ── */
[data-theme="light"] .feat-table { background: #ffffff; box-shadow: var(--shadow); border-radius: var(--radius); }
[data-theme="light"] .feat-table th {
  background: #f0f0f5;
  color: #1d1d1f;
  border-color: rgba(0,0,0,.08);
}
[data-theme="light"] .feat-table td {
  color: #6e6e73;
  border-color: rgba(0,0,0,.06);
}
[data-theme="light"] .feat-table td:first-child { color: #1d1d1f; font-weight: 600; }
[data-theme="light"] .feat-table tr:nth-child(even) td { background: rgba(0,0,0,.018); }
[data-theme="light"] .feat-table .tick  { color: var(--teal); }
[data-theme="light"] .feat-table .cross { color: #c7c7cc; }
[data-theme="light"] .feat-table .col-pp{ background: rgba(52,147,95,.03); }

/* ── Perks ── */
[data-theme="light"] .perk {
  background: #ffffff;
  border-color: rgba(0,0,0,.08);
  box-shadow: var(--shadow);
}
[data-theme="light"] .perk:hover { border-color: rgba(52,147,95,.3); box-shadow: var(--shadow-md); }
[data-theme="light"] .perk h4 { color: #1d1d1f; }
[data-theme="light"] .perk p  { color: #6e6e73; }

/* ── CTA banner ── */
[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg,#ebebf5,#e0d8f8);
  border-color: rgba(52,147,95,.2);
}
[data-theme="light"] .cta-banner h2 { color: #1d1d1f; }
[data-theme="light"] .cta-banner p  { color: #6e6e73; }

/* ── Footer ── */
[data-theme="light"] .site-footer { background: var(--footer-bg); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .footer-brand p { color: #6e6e73; }
[data-theme="light"] .footer-brand a  { color: var(--gold); }
[data-theme="light"] .footer-col h5  { color: #1d1d1f; font-weight: 700; }
[data-theme="light"] .footer-col a   { color: #6e6e73; }
[data-theme="light"] .footer-col a:hover { color: var(--gold); }
[data-theme="light"] .footer-bottom  { color: #aeaeb2; border-color: rgba(0,0,0,.1); }
[data-theme="light"] .footer-bottom a { color: #aeaeb2; }
[data-theme="light"] .footer-bottom a:hover { color: var(--gold); }

/* ── Logo ── */
[data-theme="light"] .logo-astro { color: #1d1d1f; }
[data-theme="light"] .logo-bnn   { color: #F0D068; }
[data-theme="light"] .logo-P     { color: #1d1d1f; }
[data-theme="light"] .logo-ro    { color: #1d1d1f; }

/* ── Theme toggle button ── */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color .15s, color .15s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="light"] .theme-toggle { border-color: rgba(0,0,0,.18); color: #6e6e73; background: #ffffff; }
[data-theme="light"] .theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Segoe UI', system-ui, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 1100px 900px at -8%  -4%,  rgba(108,62,191,.34) 0%, transparent 58%),
    radial-gradient(ellipse  800px 700px at 108%   8%,  rgba(1,34,80,.75)    0%, transparent 54%),
    radial-gradient(ellipse  700px 600px at  60%  110%, rgba(62,207,176,.16) 0%, transparent 58%),
    radial-gradient(ellipse  600px 500px at  50%   45%, rgba(108,62,191,.12) 0%, transparent 65%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Announce bar ── */
.announce-bar { background: linear-gradient(90deg, rgba(108,62,191,.9) 0%, rgba(80,40,160,.9) 100%); border-bottom: 1px solid rgba(108,62,191,.5); color: rgba(255,255,255,.92); text-align: center; padding: 9px 16px; font-size: .82rem; font-weight: 500; }
.announce-bar a { color: #F0D068; font-weight: 700; text-decoration: none; }
.announce-bar a:hover { text-decoration: underline; }

/* ── Nav ── */
.site-nav { background: #080f1a; border-bottom: 1px solid var(--border-gold); position: sticky; top: 0; z-index: 1000; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 16px; }
/* ── Logo (Garet + Bukhari Script) ── */
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
  gap: 0;
  flex-shrink: 0;
}
.logo-astro {
  font-family: 'Garet', 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: -.2px;
}
.logo-bnn {
  font-family: 'Garet', 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #F0D068;          /* always bright gold — both modes */
  letter-spacing: -.2px;
  margin-left: 5px;
}
.logo-pro-wrap {
  display: inline-flex;
  align-items: baseline;
  margin-left: 5px;
  line-height: 1;
}
.logo-P {
  font-family: 'Garet', 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: -.2px;
}
.logo-ro {
  font-family: 'Bukhari Script', cursive;
  font-size: 1.2rem;
  color: #ffffff;
  display: inline-block;
  transform: rotate(-10deg) translateY(-3px);
  transform-origin: left bottom;
  margin-left: 3px;
}
/* Day mode: text adapts but BNN stays gold */
[data-theme="light"] .logo-astro { color: #0d1424; }
[data-theme="light"] .logo-bnn   { color: #F0D068; }   /* keep bright gold */
[data-theme="light"] .logo-P     { color: #0d1424; }
[data-theme="light"] .logo-ro    { color: #0d1424; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.7); padding: 7px 13px; border-radius: 6px; font-size: .86rem; font-weight: 500; transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.1); color: #fff; }
.nav-links a.active-learn { background: rgba(240,208,104,.15); color: var(--gold); }
.nav-admin-link { font-size: .78rem; color: rgba(255,255,255,.4); padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,.12); transition: all .15s; white-space: nowrap; }
.nav-admin-link:hover { color: var(--gold); border-color: rgba(240,208,104,.3); }
.nav-links li.has-dropdown { position: relative; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: #080f1a; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 6px; min-width: 200px; z-index: 200; box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.nav-links li.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li { list-style: none; }
.nav-dropdown a { display: block; padding: 8px 12px; border-radius: 6px; font-size: .82rem; color: rgba(255,255,255,.65); transition: all .12s; }
.nav-dropdown a:hover { background: rgba(240,208,104,.1); color: #F0D068; }
/* ── Learn mega-menu ── */
.nav-megamenu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 340px; background: #080f1a; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,.6); overflow: hidden; }
.nav-links li.has-dropdown:hover .nav-megamenu { display: block; }
.nmm-section-label { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #F0D068; padding: 14px 16px 6px; }
.nmm-course-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; text-decoration: none; transition: background .12s; }
.nmm-course-item:hover { background: rgba(255,255,255,.05); }
.nmm-icon-box { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.nmm-num-icon { font-size: .65rem; font-weight: 800; color: rgba(255,255,255,.7); line-height: 1.3; text-align: center; }
.nmm-course-info { display: flex; flex-direction: column; gap: 2px; }
.nmm-course-title { font-size: .85rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 7px; }
.nmm-course-desc { font-size: .74rem; color: rgba(255,255,255,.45); }
.nmm-badge { font-size: .6rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; white-space: nowrap; }
.nmm-best { background: rgba(240,208,104,.18); color: #F0D068; border: 1px solid rgba(240,208,104,.3); }
.nmm-pop  { background: rgba(99,102,241,.2); color: #a5b4fc; border: 1px solid rgba(99,102,241,.3); }
.nmm-new  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.12); }
.nmm-divider { height: 1px; background: rgba(255,255,255,.07); margin: 6px 0; }
.nmm-resources { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 4px 10px 10px; }
.nmm-resource-item { display: flex; flex-direction: column; gap: 3px; padding: 10px; border-radius: 10px; text-decoration: none; transition: background .12s; }
.nmm-resource-item:hover { background: rgba(255,255,255,.05); }
.nmm-resource-item svg { color: #F0D068; }
.nmm-resource-item strong { font-size: .82rem; color: #fff; font-weight: 700; }
.nmm-resource-item span { font-size: .72rem; color: rgba(255,255,255,.4); }
.nmm-footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-top: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.02); }
.nmm-footer a { font-size: .78rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .12s; }
.nmm-footer a:hover { color: #F0D068; }
.nmm-footer span { font-size: .72rem; color: rgba(240,208,104,.65); }
[data-theme="light"] .nav-megamenu { background: #fff; border-color: rgba(0,0,0,.1); box-shadow: 0 16px 48px rgba(0,0,0,.15); }
[data-theme="light"] .nmm-section-label { color: #7a5400; }
[data-theme="light"] .nmm-course-title { color: #1d1d1f; }
[data-theme="light"] .nmm-course-desc { color: rgba(0,0,0,.45); }
[data-theme="light"] .nmm-icon-box { background: rgba(0,0,0,.06); }
[data-theme="light"] .nmm-course-item:hover,[data-theme="light"] .nmm-resource-item:hover { background: rgba(0,0,0,.04); }
[data-theme="light"] .nmm-divider { background: rgba(0,0,0,.07); }
[data-theme="light"] .nmm-resource-item strong { color: #1d1d1f; }
[data-theme="light"] .nmm-resource-item span { color: rgba(0,0,0,.4); }
[data-theme="light"] .nmm-footer { border-color: rgba(0,0,0,.07); background: rgba(0,0,0,.02); }
[data-theme="light"] .nmm-footer a { color: rgba(0,0,0,.5); }
[data-theme="light"] .nmm-footer span { color: #7a5400; }
/* Watch & Listen section in mega-menu */
.nmm-watch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 4px 10px 10px; }
.nmm-watch-item { display: flex; flex-direction: column; gap: 3px; padding: 10px; border-radius: 10px; text-decoration: none; transition: background .12s; }
.nmm-watch-item:hover { background: rgba(255,255,255,.05); }
.nmm-watch-item svg { color: #F0D068; }
.nmm-watch-item strong { font-size: .82rem; color: #fff; font-weight: 700; }
.nmm-watch-item span { font-size: .72rem; color: rgba(255,255,255,.4); }
[data-theme="light"] .nmm-watch-item:hover { background: rgba(0,0,0,.04); }
[data-theme="light"] .nmm-watch-item strong { color: #1d1d1f; }
[data-theme="light"] .nmm-watch-item span { color: rgba(0,0,0,.4); }

.nav-cta-btn { background: var(--gold); color: #012250; font-weight: 700; padding: 8px 18px; border-radius: 6px; font-size: .82rem; white-space: nowrap; transition: opacity .15s; }
.nav-cta-btn:hover { opacity: .88; }

/* ── Google Translate widget (nav) ── */
.nav-translate, .bnn-gh-translate { line-height: 1; }
.nav-translate .goog-te-gadget,
.bnn-gh-translate .goog-te-gadget { font-size: 0 !important; }
.nav-translate .goog-te-gadget select,
.bnn-gh-translate .goog-te-gadget select {
  font-size: .75rem !important;
  background-color: #0d1424 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(240,208,104,.7)'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  color: rgba(255,255,255,.7) !important;
  border: 1px solid rgba(240,208,104,.35) !important;
  border-radius: 7px !important;
  padding: 5px 28px 5px 10px !important;
  cursor: pointer; outline: none; line-height: 1.4; max-width: 150px;
  -webkit-appearance: none !important; appearance: none !important;
}
.nav-translate .goog-te-gadget select:hover,
.bnn-gh-translate .goog-te-gadget select:hover { border-color: rgba(240,208,104,.5); color: var(--gold); }
.nav-translate .goog-te-gadget > span,
.bnn-gh-translate .goog-te-gadget > span { display: none !important; }
/* Google Translate bar — allowed to show so "Show original" works */
[data-theme="light"] .nav-translate .goog-te-gadget select,
[data-theme="light"] .bnn-gh-translate .goog-te-gadget select {
  background: #f5f0e8 !important; color: rgba(0,0,0,.65) !important;
  border-color: rgba(180,140,20,.35) !important;
}
[data-theme="light"] .nav-translate .goog-te-gadget select:hover,
[data-theme="light"] .bnn-gh-translate .goog-te-gadget select:hover {
  border-color: rgba(52,147,95,.5) !important; color: #34935F !important;
}

/* ── Wrap ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-dark { padding: 80px 0; background: rgba(255,255,255,.02); }

/* ── Section head ── */
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.sec-label { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.sec-head h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.sec-head p { color: var(--text-muted); font-size: 1rem; }

/* ── Page hero ── */
.page-hero { padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(108,62,191,.2) 0%, transparent 70%); pointer-events: none; }
.page-hero .breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: .78rem; color: var(--text-dim); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--text-muted); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 32px; font-size: .92rem; font-weight: 700; transition: all .2s; cursor: pointer; border: none; white-space: nowrap; }
.btn-gold { background: var(--gold); color: #012250; box-shadow: var(--shadow-gold); }
.btn-gold:hover { opacity: .9; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 14px 34px; font-size: 1rem; }

/* ── Course card ── */
.course-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.course-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.course-card:hover { background: var(--bg-card-hover); border-color: rgba(240,208,104,.3); transform: translateY(-3px); }
.course-card.featured { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.cc-thumb { background: linear-gradient(135deg, #0f1f3d, #1a1050); height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.cc-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: #012250; font-size: .65rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .5px; }
.cc-body { padding: 22px 22px 26px; }
.cc-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 6px; }
.cc-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.cc-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.cc-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cc-meta span { font-size: .75rem; color: var(--text-dim); }
.cc-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.cc-price [data-price] { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.cc-price .cc-price-note { font-size: .72rem; color: var(--text-dim); }
.cc-price .amount { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.cc-price .old { font-size: .85rem; color: var(--text-dim); text-decoration: line-through; }
.cc-price .membership { font-size: .75rem; background: rgba(62,207,176,.12); color: var(--teal); border: 1px solid rgba(62,207,176,.25); border-radius: 6px; padding: 2px 8px; font-weight: 700; }
.cc-cta { display: block; text-align: center; padding: 11px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-gold); color: var(--gold); font-weight: 700; font-size: .88rem; transition: all .18s; }
.cc-cta:hover, .course-card.featured .cc-cta { background: var(--gold); color: #012250; }

/* ── Membership plans ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.plan-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; position: relative; transition: all .2s; }
.plan-card.featured { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.plan-best { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #012250; font-size: .68rem; font-weight: 800; padding: 4px 16px; border-radius: 99px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.plan-tier { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 10px; }
.plan-price { font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 6px; color: var(--gold); }
.plan-price [data-price] { font-size: inherit; font-weight: inherit; color: inherit; }
.plan-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 6px; color: var(--gold); }
.plan-price .per { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.plan-desc { font-size: .83rem; color: var(--text-muted); margin-bottom: 8px; }
.plan-was { font-size: .78rem; color: var(--text-dim); text-decoration: line-through; margin-bottom: 12px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.plan-feats { list-style: none; margin-bottom: 26px; }
.plan-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; padding: 6px 0; line-height: 1.45; color: rgba(255,255,255,.8); }
.plan-feats .y { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-feats .n { color: var(--text-dim); flex-shrink: 0; margin-top: 1px; }
.plan-cta { display: block; text-align: center; padding: 13px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-gold); color: var(--gold); font-weight: 700; font-size: .9rem; transition: all .18s; }
.plan-cta:hover, .plan-card.featured .plan-cta { background: var(--gold); color: #012250; }

/* ── Billing toggle ── */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; }
.toggle-label { font-size: .88rem; font-weight: 600; color: var(--text-dim); }
.toggle-label.active { color: #fff; }
.toggle-track { width: 48px; height: 26px; background: rgba(108,62,191,.5); border-radius: 99px; position: relative; cursor: pointer; transition: background .2s; flex-shrink: 0; border: 1px solid rgba(108,62,191,.6); }
.toggle-thumb { width: 20px; height: 20px; background: #fff; border-radius: 50%; position: absolute; top: 2px; left: 2px; transition: transform .2s; }
.toggle-track.yearly { background: var(--purple); }
.toggle-track.yearly .toggle-thumb { transform: translateX(22px); }
.save-badge { background: var(--teal); color: #012250; font-size: .65rem; font-weight: 800; padding: 2px 8px; border-radius: 99px; letter-spacing: .5px; white-space: nowrap; }

/* ── Feature comparison table ── */
.feat-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.feat-table th { background: #080f1a; color: rgba(255,255,255,.7); padding: 14px 18px; font-size: .8rem; font-weight: 700; text-align: center; border-bottom: 1px solid var(--border); }
.feat-table th:first-child { text-align: left; }
.feat-table td { padding: 12px 18px; font-size: .84rem; border-bottom: 1px solid var(--border); text-align: center; color: var(--text-muted); }
.feat-table td:first-child { text-align: left; color: rgba(255,255,255,.8); font-weight: 500; }
.feat-table tr:last-child td { border-bottom: none; }
.feat-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.feat-table .tick { color: var(--teal); font-weight: 800; }
.feat-table .cross { color: var(--text-dim); }
.feat-table .col-pp { background: rgba(240,208,104,.04); }

/* ── Perks ── */
.perks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.perk { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all .2s; }
.perk:hover { border-color: var(--border-gold); }
.perk-icon { font-size: 2rem; margin-bottom: 12px; }
.perk h4 { font-size: .9rem; font-weight: 700; margin-bottom: 7px; color: #fff; }
.perk p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ── CTA banner ── */
.cta-banner { background: linear-gradient(135deg, #0f1f3d, #1a1050); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 70px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #080f1a; 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-logo { display: flex; align-items: baseline; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.footer-brand a { color: var(--gold); }
.footer-col h5 { color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: .84rem; transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WhatsApp float ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,.4); z-index: 999; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Translate FAB ── */
.bnn-translate-fab { position: fixed; bottom: 84px; right: 20px; z-index: 8999; }
.bnn-translate-fab-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 15px; border-radius: 24px;
  background: #080f1a; border: 1px solid rgba(240,208,104,.4);
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.5);
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap; line-height: 1; font-family: inherit;
}
.bnn-translate-fab-btn:hover { border-color: rgba(240,208,104,.75); color: #F0D068; background: rgba(240,208,104,.06); }
[data-theme="light"] .bnn-translate-fab-btn { background: #fff; border-color: rgba(0,0,0,.15); color: #3d3d3f; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
[data-theme="light"] .bnn-translate-fab-btn:hover { background: #f9f6f0; border-color: rgba(0,0,0,.3); color: #1d1d1f; }
.bnn-translate-popup {
  display: none; position: absolute; bottom: calc(100% + 10px); right: 0;
  background: #080f1a; border: 1px solid rgba(240,208,104,.2);
  border-radius: 14px; padding: 14px; width: 246px;
  box-shadow: 0 10px 40px rgba(0,0,0,.75);
}
.bnn-translate-popup.is-open { display: block; }
.bnn-translate-popup-label {
  font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 10px; padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bnn-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.bnn-lang-btn {
  padding: 7px 10px; border-radius: 8px; font-size: .78rem; cursor: pointer;
  border: 1px solid transparent; background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6); text-align: left; transition: all .12s;
  font-family: inherit; line-height: 1.25;
}
.bnn-lang-btn:hover { background: rgba(240,208,104,.08); border-color: rgba(240,208,104,.2); color: #F0D068; }
.bnn-lang-btn.bnn-lang-active { background: rgba(240,208,104,.1); border-color: rgba(240,208,104,.3); color: #F0D068; font-weight: 700; }
[data-theme="light"] .bnn-translate-popup { background: #fff; border-color: rgba(0,0,0,.1); box-shadow: 0 10px 40px rgba(0,0,0,.15); }
[data-theme="light"] .bnn-translate-popup-label { color: rgba(0,0,0,.35); border-bottom-color: rgba(0,0,0,.07); }
[data-theme="light"] .bnn-lang-btn { background: rgba(0,0,0,.03); color: #4a4a55; }
[data-theme="light"] .bnn-lang-btn:hover { background: rgba(180,140,20,.08); border-color: rgba(180,140,20,.25); color: #7a5400; }
[data-theme="light"] .bnn-lang-btn.bnn-lang-active { background: rgba(180,140,20,.1); border-color: rgba(180,140,20,.3); color: #7a5400; }
.bnn-lang-back-en { display: block; width: 100%; margin-bottom: 10px; padding: 7px 10px; border-radius: 8px; border: 1px solid rgba(240,208,104,.4); background: rgba(240,208,104,.08); color: #F0D068; font-size: .82rem; font-weight: 700; cursor: pointer; text-align: center; }
.bnn-lang-back-en:hover { background: rgba(240,208,104,.16); }
[data-theme="light"] .bnn-lang-back-en { background: rgba(180,140,20,.08); border-color: rgba(180,140,20,.3); color: #7a5400; }

/* ── Responsive ── */
@media(max-width: 960px) {
  .course-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .perks-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ── Hamburger button ── */
.nav-ham { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px 4px; color: rgba(255,255,255,.75); flex-shrink: 0; margin-left: auto; }
.nav-ham span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
[data-theme="light"] .nav-ham { color: rgba(0,0,0,.6); }

@media(max-width: 600px) {
  /* Float nav fixed at top */
  .site-nav { position: fixed !important; top: 0; left: 0; right: 0; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(8,15,26,.92) !important; box-shadow: 0 2px 24px rgba(0,0,0,.4); }
  [data-theme="light"] .site-nav { background: rgba(255,255,255,.92) !important; }
  /* Push content below fixed nav */
  body { padding-top: 60px; }
  .nav-ham { display: flex; }
  .nav-actions { display: none; }
  /* Mobile dropdown — fixed, floats below nav */
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(8,15,26,.97); border-top: 1px solid rgba(255,255,255,.07); padding: 8px 0 16px; z-index: 999; box-shadow: 0 12px 40px rgba(0,0,0,.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); max-height: calc(100vh - 60px); overflow-y: auto; }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 11px 20px; border-radius: 0; font-size: .9rem; }
  .nav-links a:hover { background: rgba(255,255,255,.06); }
  /* Mobile mega-menu inline */
  .nav-megamenu { display: none; position: static; transform: none; width: 100%; border-radius: 0; border-left: none; border-right: none; box-shadow: none; border-top: 1px solid rgba(255,255,255,.07); }
  .has-dropdown.is-open .nav-megamenu { display: block; }
  [data-theme="light"] .nav-links { background: rgba(255,255,255,.97); border-color: rgba(0,0,0,.08); }
  [data-theme="light"] .nav-megamenu { background: #f5f5f7; }
  .section, .section-dark { padding: 56px 0; }
  .perks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Inline SVG icon system ── */
.site-icon { display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }
.nav-links a .site-icon { opacity: .75; }
.nav-links a:hover .site-icon,
.nav-links a.active .site-icon { opacity: 1; }

/* ── Footer founder card ── */
.footer-founder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.footer-founder-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(240,208,104,.35);
  flex-shrink: 0;
}
.footer-founder-name { font-size: .82rem; font-weight: 800; color: #fff; line-height: 1.2; }
.footer-founder-role { font-size: .7rem; color: var(--gold); font-weight: 600; margin: 2px 0 4px; }
.footer-founder-link { font-size: .68rem; color: var(--teal); font-weight: 700; text-decoration: none; }
.footer-founder-link:hover { text-decoration: underline; }
[data-theme="light"] .footer-founder { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.08); }
[data-theme="light"] .footer-founder-name { color: #0d1424; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 4px; }
.footer-social-link {
  font-size: .68rem; font-weight: 700; color: var(--text-dim);
  text-decoration: none; padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
  transition: color .15s, border-color .15s;
}
.footer-social-link:hover { color: var(--teal); border-color: rgba(62,207,176,.3); }
[data-theme="light"] .footer-social-link { color: rgba(13,20,36,.4); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .footer-social-link:hover { color: var(--teal); }

/* ── Practitioner's Path founder mini-card ── */
.prac-founder-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
}
.prac-founder-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(240,208,104,.4);
  flex-shrink: 0;
}
.prac-founder-name { font-size: .88rem; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 2px; }
.prac-founder-title { font-size: .72rem; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.prac-founder-bio { font-size: .72rem; color: var(--text-muted); line-height: 1.5; }
.prac-founder-bio a { color: var(--teal); font-weight: 700; text-decoration: none; }
.prac-founder-bio a:hover { text-decoration: underline; }
[data-theme="light"] .prac-founder-card { background: rgba(0,0,0,.025); border-color: rgba(0,0,0,.08); }
[data-theme="light"] .prac-founder-name { color: #0d1424; }
[data-theme="light"] .prac-founder-bio { color: rgba(13,20,36,.6); }
/* Book nudge strip */
.prac-book-nudge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.18);
  border-radius: 12px;
  text-decoration: none;
  transition: background .15s;
}
.prac-book-nudge:hover { background: rgba(249,115,22,.1); }
.prac-book-nudge-icon { font-size: 1.5rem; flex-shrink: 0; }
.prac-book-nudge-text { flex: 1; }
.prac-book-nudge-label { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #fb923c; margin-bottom: 2px; }
.prac-book-nudge-title { font-size: .82rem; font-weight: 800; color: var(--text); line-height: 1.3; }
.prac-book-nudge-sub { font-size: .7rem; color: var(--text-muted); margin-top: 1px; }
.prac-book-nudge-cta { font-size: .72rem; font-weight: 800; color: #ff9900; white-space: nowrap; flex-shrink: 0; }
[data-theme="light"] .prac-book-nudge-title { color: #0d1424; }

/* ══════════════════════════════════════════════════════
   PRACTITIONER'S PATH — cross-sell component
   Used on: bnn-numerology, bnn-kundli, bnn-mundane
   ══════════════════════════════════════════════════════ */
.prac-path {
  margin: 48px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 48px;
}
.prac-path-inner {
  max-width: 780px;
  margin: 0 auto;
}
.prac-path-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}
.prac-path-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}
.prac-path-sub {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 28px;
}
.prac-path-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.prac-course-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s;
}
.prac-course-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,208,104,.25);
  transform: translateY(-2px);
}
.prac-course-card.featured {
  border-color: rgba(240,208,104,.2);
  background: rgba(240,208,104,.04);
}
.prac-course-icon { font-size: 1.4rem; line-height: 1; }
.prac-course-label {
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
}
.prac-course-title {
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.prac-course-desc {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.prac-course-cta {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}
.prac-path-byline {
  font-size: .72rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.prac-path-byline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
}
/* Light mode */
[data-theme="light"] .prac-path { border-top-color: rgba(0,0,0,.08); }
[data-theme="light"] .prac-path-quote { color: #0d1424; }
[data-theme="light"] .prac-path-sub { color: rgba(13,20,36,.6); }
[data-theme="light"] .prac-course-card { background: #fff; border-color: rgba(0,0,0,.09); }
[data-theme="light"] .prac-course-card:hover { background: #fafbff; border-color: rgba(240,208,104,.4); }
[data-theme="light"] .prac-course-card.featured { background: rgba(240,208,104,.06); border-color: rgba(240,208,104,.3); }
[data-theme="light"] .prac-course-title { color: #0d1424; }
[data-theme="light"] .prac-course-desc { color: rgba(13,20,36,.55); }
[data-theme="light"] .prac-path-byline { color: rgba(13,20,36,.35); }
@media (max-width: 600px) {
  .prac-path-quote { font-size: 1rem; }
  .prac-path-courses { grid-template-columns: 1fr; }
}

/* ── Copy protection ── */
body { -webkit-user-select: none; user-select: none; }
input, textarea, select, [contenteditable],
.form-input, .famous-panel-search, .country-panel-search { -webkit-user-select: text !important; user-select: text !important; }

/* ── Print protection (non-admin — admin JS restores display:block on afterprint) ── */
@media print {
  body { display: none !important; }
}

/* Background lighting is now set directly on body via background-image (see body rule above).
   background-image layers on top of background-color — no z-index issues. */
