/* =========================================================
   ZENTHRIX — GLOBAL DESIGN SYSTEM (LIGHT THEME)
   Brand: Lavender-white + Purple→Blue gradient
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Core light backgrounds */
  --zenthrix-bg: #111827;
  --zenthrix-bg-alt: #111827;
  --zenthrix-bg-darker: #292f46;
  --zenthrix-surface: #292f46;
  --zenthrix-surface-light: #232B45;

  /* Brand + accent colors */
  --zenthrix-green: #1B2236;
  --zenthrix-green-light: #24304F;
  --zenthrix-gold: #2563EB;
  --zenthrix-gold-light: #2563EB;
  --zenthrix-gold-deep: #00C2FF;
  --zenthrix-amber: #B45309;
  --zenthrix-teal: #0E9F6E;
  --zenthrix-coral: #C0392B;

  /* Gradients — brand gradient (Electric Blue → Cyan) used for buttons/icons/tags;
     amber + teal stay as-is since they carry semantic meaning (pending / success), not brand identity */
  --zenthrix-gradient-gold: linear-gradient(135deg, #2563EB 0%, #00C2FF 100%);
  --zenthrix-gradient-amber: linear-gradient(135deg, #D97706 0%, #FBBF24 100%);
  --zenthrix-gradient-teal: linear-gradient(135deg, #0E9F6E 0%, #34D399 100%);
  --zenthrix-gradient-dark: linear-gradient(160deg, #111827, #292f46);

  /* Text */
  --zenthrix-text: #ffffff;
  --zenthrix-text-muted: #ffffff;
  --zenthrix-border: rgb(255, 255, 255);
  --zenthrix-border-soft: #ffffff;

  /* Typography */
  --zenthrix-font: 'Montserrat', sans-serif;

  /* Layout */
  --zenthrix-radius: 10px;
  --zenthrix-radius-lg: 18px;
  --zenthrix-shadow: 0 16px 40px rgba(16, 24, 64, 0.08);
  --zenthrix-shadow-gold: 0 14px 36px rgba(37, 99, 235, 0.24);
  --zenthrix-shadow-premium: 0 22px 55px rgba(16, 24, 64, 0.12), 0 0 36px rgba(37, 99, 235, 0.10);
  --zenthrix-container: 1180px;
}

* { box-sizing: border-box; }

body {
  font-family: var(--zenthrix-font);
  color: var(--zenthrix-text);
  background: var(--zenthrix-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--zenthrix-font);
  font-weight: 700;
  color: var(--zenthrix-text);
  margin: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.zx-container {
  max-width: var(--zenthrix-container);
  margin: 0 auto;
  padding: 0 24px;
}

.zx-section { padding: 90px 0; background: var(--zenthrix-bg); }
.zx-section--cream { background: var(--zenthrix-bg-alt); }
.zx-section--green { background: var(--zenthrix-gradient-dark); }

/* ---------- Site-wide ambient particle backgrounds ---------- */
.zx-hero,
.zx-founder-hero,
.zx-auth-page,
.zx-section,
.zx-footer,
.zx-cta-banner {
  position: relative;
}
.zx-hero > :not(canvas),
.zx-founder-hero > :not(canvas),
.zx-auth-page > :not(canvas),
.zx-section > :not(canvas),
.zx-footer > :not(canvas),
.zx-cta-banner > :not(canvas) {
  position: relative;
  z-index: 1;
}
.zx-bg-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.zx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--zenthrix-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.zx-eyebrow i { color: var(--zenthrix-gold); -webkit-text-fill-color: var(--zenthrix-gold); }

.zx-heading { font-size: 38px; line-height: 1.2; margin-bottom: 18px; }
.zx-subtext { font-size: 17px; color: var(--zenthrix-text-muted); line-height: 1.7; max-width: 600px; }

/* ---------- Buttons (gradients) ---------- */
.zx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.zx-btn:hover { transform: translateY(-2px); opacity: 0.94; }

.zx-btn--gold { background: var(--zenthrix-gradient-gold); color: #FFFFFF; box-shadow: var(--zenthrix-shadow-gold); }
.zx-btn--outline { border-color: rgba(255,255,255,0.18); color: var(--zenthrix-text); background: rgba(255,255,255,0.04); }
.zx-btn--outline-dark {
  border: 1.5px solid var(--zenthrix-gold);
  color: var(--zenthrix-gold-light);
  background: rgba(37,99,235,0.10);
}
.zx-btn--outline-dark:hover { background: var(--zenthrix-gradient-gold); color: #FFFFFF; }

/* ---------- Navbar ---------- */
.zx-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 33, 75, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zenthrix-border);
}
.zx-navbar .zx-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.zx-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--zenthrix-text); flex-shrink: 0; }
.zx-logo img { flex-shrink: 0; object-fit: contain; }
.zx-logo i { color: var(--zenthrix-gold); }
.zx-nav-links { display: flex; gap: 32px; font-weight: 500; font-size: 15px; }
.zx-nav-links a:hover { color: var(--zenthrix-gold-light); }
.zx-nav-cta { display: flex; align-items: center; gap: 18px; }
.zx-nav-toggle { display: none; font-size: 24px; background: none; border: none; color: var(--zenthrix-text); }

@media (max-width: 900px) {
  .zx-nav-links { display: none; }
  .zx-nav-toggle { display: block; }

  /* Keep logo + Log in + Get started + hamburger all on one line
     instead of wrapping into a stack — shrink the button size and
     tighten the gaps rather than letting them overflow/wrap. */
  .zx-nav-cta { gap: 8px; }
  .zx-nav-cta .zx-btn { padding: 9px 14px; font-size: 13px; white-space: nowrap; }
  .zx-navbar .zx-logo img { height: 70px !important; }
  .zx-footer .zx-logo img { height: 70px !important; }

  /* The mobile menu, when opened, becomes a full-width dropdown panel
     anchored under the navbar — not an inline flex item squeezed
     between the logo and buttons (which is what it was falling back
     to with no rule for this state at all). */
  .zx-nav-links--open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--zenthrix-bg-darker); border-bottom: 1px solid var(--zenthrix-border);
    padding: 14px 24px 20px; box-shadow: 0 12px 24px rgba(0,0,0,0.35); z-index: 200;
  }
  .zx-nav-links--open a { padding: 12px 4px; border-bottom: 1px solid var(--zenthrix-border-soft); }
  .zx-nav-links--open a:last-child { border-bottom: none; }
  .zx-navbar .zx-container { position: relative; }
}

/* ---- ACCOUNT MENU (icon replaces the old "Log in" / "Get started" buttons) ---- */
.zx-account-menu { position: relative; }
.zx-account-toggle {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--zenthrix-gradient-gold); border: none; cursor: pointer;
  color: #FFFFFF; font-size: 16px; padding: 0;
  animation: zx-account-pulse 2.6s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.zx-account-toggle:hover { transform: translateY(-2px); }
.zx-account-toggle i { pointer-events: none; }
@keyframes zx-account-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.45), 0 0 0 0 rgba(0,194,255,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(37,99,235,0), 0 0 14px 4px rgba(0,194,255,0.25); }
}
.zx-account-dropdown {
  display: none; flex-direction: column; gap: 2px;
  position: absolute; top: 54px; right: 0; min-width: 190px; z-index: 210;
  background: var(--zenthrix-surface); border: 1px solid var(--zenthrix-border-soft);
  border-radius: var(--zenthrix-radius); box-shadow: var(--zenthrix-shadow); padding: 8px;
}
.zx-account-dropdown--open { display: flex; }
.zx-account-dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--zenthrix-text); }
.zx-account-dropdown a i { width: 16px; text-align: center; color: var(--zenthrix-gold-light); }
.zx-account-dropdown a:hover { background: rgba(37,99,235,0.10); color: var(--zenthrix-gold-light); }
@media (max-width: 900px) { .zx-account-toggle { width: 38px; height: 38px; font-size: 14px; } }
@media (prefers-reduced-motion: reduce) { .zx-account-toggle { animation: none; } }

/* ---------- Hero ---------- */
.zx-hero { padding: 70px 0 60px; background: var(--zenthrix-gradient-dark); overflow: hidden; position: relative; }
.zx-hero::before {
  content: '';
  position: absolute;
  top: -220px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.zx-hero .zx-container { position: relative; z-index: 1; }
.zx-hero .zx-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.zx-hero h1 { font-size: 50px; line-height: 1.12; margin-bottom: 22px; color: var(--zenthrix-text); }
.zx-hero h1 span {
  background: var(--zenthrix-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.zx-hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.zx-hero-stats { display: flex; gap: 28px; margin-top: 40px; }
.zx-hero-stat { display: flex; align-items: center; gap: 10px; }
.zx-hero-stat i { font-size: 20px; color: var(--zenthrix-gold); }
.zx-hero-stat strong { display: block; font-size: 18px; color: var(--zenthrix-text); }
.zx-hero-stat span { font-size: 12px; color: var(--zenthrix-text-muted); }

.zx-hero-media { position: relative; }
.zx-hero-media img { border-radius: var(--zenthrix-radius-lg); box-shadow: var(--zenthrix-shadow); border: 1px solid var(--zenthrix-border-soft); }
.zx-hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--zenthrix-surface); border-radius: var(--zenthrix-radius);
  padding: 14px 18px; box-shadow: var(--zenthrix-shadow);
  border: 1px solid var(--zenthrix-border);
  display: flex; align-items: center; gap: 12px;
}
.zx-hero-badge i { font-size: 22px; color: var(--zenthrix-gold); }
.zx-hero-badge strong { display: block; font-size: 14px; color: var(--zenthrix-text); }
.zx-hero-badge span { font-size: 12px; color: var(--zenthrix-text-muted); }

@media (max-width: 900px) {
  .zx-hero .zx-container { grid-template-columns: 1fr; }
  .zx-hero h1 { font-size: 36px; }
}

/* ---------- Trust strip ---------- */
.zx-trust-strip { padding: 36px 0; border-top: 1px solid var(--zenthrix-border); border-bottom: 1px solid var(--zenthrix-border); background: var(--zenthrix-bg); }
.zx-trust-strip .zx-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.zx-trust-item { display: flex; align-items: center; gap: 10px; color: var(--zenthrix-text-muted); font-size: 14px; font-weight: 500; }
.zx-trust-item i { color: var(--zenthrix-gold); font-size: 18px; }

/* ---------- Feature / why cards ---------- */
.zx-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.zx-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
@media (max-width: 900px) { .zx-grid-4, .zx-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .zx-grid-4, .zx-grid-3 { grid-template-columns: 1fr; } }

.zx-card {
  background: var(--zenthrix-surface);
  border: 1px solid var(--zenthrix-border-soft);
  border-radius: var(--zenthrix-radius-lg);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform, box-shadow;
}
.zx-card:hover { box-shadow: var(--zenthrix-shadow-premium); border-color: var(--zenthrix-border); }

.zx-card, .zx-pricing-card {
  will-change: transform, box-shadow;
}
.zx-pricing-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.zx-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
  background: var(--zenthrix-gradient-gold);
}
.zx-grid-4 .zx-card:nth-child(1) .zx-card-icon { background: var(--zenthrix-gradient-gold); }
.zx-grid-4 .zx-card:nth-child(2) .zx-card-icon { background: var(--zenthrix-gradient-teal); }
.zx-grid-4 .zx-card:nth-child(3) .zx-card-icon { background: var(--zenthrix-gradient-amber); }
.zx-grid-4 .zx-card:nth-child(4) .zx-card-icon { background: linear-gradient(135deg, #2563EB 0%, #00C2FF 100%); }
.zx-card h3 { font-size: 18px; margin-bottom: 10px; }
.zx-card p { font-size: 14px; color: var(--zenthrix-text-muted); line-height: 1.6; margin: 0; }

/* ---------- Course pillar cards (with image) ---------- */
.zx-pillar-card {
  overflow: hidden;
  padding: 0;
}
.zx-pillar-card.zx-reveal {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s ease, transform .6s ease;
}
.zx-pillar-card.zx-reveal.zx-in {
  opacity: 1;
  transform: translateX(0);
}
.zx-pillar-img { aspect-ratio: 3/2; width: 100%; object-fit: cover; filter: saturate(1.05); display: block; }
.zx-pillar-body { padding: 22px 24px 26px; }
.zx-pillar-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: #FFFFFF;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
  background: var(--zenthrix-gradient-gold);
}
.zx-grid-4 .zx-pillar-card:nth-child(1) .zx-pillar-tag { background: var(--zenthrix-gradient-gold); }
.zx-grid-4 .zx-pillar-card:nth-child(2) .zx-pillar-tag { background: var(--zenthrix-gradient-teal); }
.zx-grid-4 .zx-pillar-card:nth-child(3) .zx-pillar-tag { background: var(--zenthrix-gradient-amber); }
.zx-grid-4 .zx-pillar-card:nth-child(4) .zx-pillar-tag { background: linear-gradient(135deg, #2563EB 0%, #00C2FF 100%); }
.zx-pillar-body h3 { font-size: 17px; margin-bottom: 8px; }
.zx-pillar-body p { font-size: 13.5px; color: var(--zenthrix-text-muted); margin: 0; }

/* ---------- Skill pillar carousel (auto-slide, 4 visible, loop) ---------- */
.zx-pillar-carousel { overflow: hidden; position: relative; margin-top: 50px; }
.zx-pillar-track { display: flex; gap: 24px; will-change: transform; }
.zx-pillar-track .zx-pillar-card { flex: 0 0 calc((100% - 3 * 24px) / 4); }
@media (max-width: 900px) { .zx-pillar-track .zx-pillar-card { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .zx-pillar-track .zx-pillar-card { flex: 0 0 100%; } }

/* ---------- Mentor carousel (auto-slide, 3 visible, loop) ---------- */
.zx-mentor-carousel { overflow: hidden; position: relative; margin-top: 50px; }
.zx-mentor-track { display: flex; gap: 26px; will-change: transform; }
.zx-mentor-track .zx-instructor-card { flex: 0 0 calc((100% - 2 * 26px) / 3); }
@media (max-width: 900px) { .zx-mentor-track .zx-instructor-card { flex: 0 0 calc((100% - 26px) / 2); } }
@media (max-width: 600px) { .zx-mentor-track .zx-instructor-card { flex: 0 0 100%; } }

/* ---------- Testimonial carousel (auto-slide, 3 visible, loop) ---------- */
.zx-testimonial-carousel { overflow: hidden; position: relative; margin-top: 50px; }
.zx-testimonial-track { display: flex; gap: 26px; will-change: transform; }
.zx-testimonial-track .zx-testimonial-card { flex: 0 0 calc((100% - 2 * 26px) / 3); }
@media (max-width: 900px) { .zx-testimonial-track .zx-testimonial-card { flex: 0 0 calc((100% - 26px) / 2); } }
@media (max-width: 600px) { .zx-testimonial-track .zx-testimonial-card { flex: 0 0 100%; } }

/* ---------- Pricing / tiers ---------- */
.zx-pricing-card {
  position: relative;
  background: var(--zenthrix-surface);
  border: 1.5px solid var(--zenthrix-border-soft);
  border-radius: var(--zenthrix-radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.zx-pricing-img { width: 100%; height: 350px; object-fit: cover; }
.zx-pricing-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.zx-grid-3 .zx-pricing-card:nth-child(1) .zx-pricing-img { filter: saturate(1.1) hue-rotate(0deg); }
.zx-pricing-card--featured { border-color: var(--zenthrix-gold); box-shadow: var(--zenthrix-shadow-gold); transform: scale(1.03); background: var(--zenthrix-surface-light); }
.zx-pricing-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--zenthrix-gradient-gold); color: #FFFFFF;
  font-size: 11.5px; font-weight: 700; padding: 5px 13px; border-radius: 50px;
}
.zx-pricing-tier { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--zenthrix-gold-light); margin-bottom: 8px; }
.zx-pricing-amount { font-size: 34px; font-weight: 800; color: var(--zenthrix-text); margin-bottom: 4px; }
.zx-pricing-amount span { font-size: 14px; font-weight: 500; color: var(--zenthrix-text-muted); }
.zx-pricing-list { list-style: none; padding: 0; margin: 20px 0 16px; flex-grow: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.zx-pricing-list li {
  display: flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 500;
  color: var(--zenthrix-text); margin: 0; padding: 6px 10px; border-radius: 50px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--zenthrix-border-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.zx-pricing-list i { color: var(--zenthrix-gold); font-size: 10px; flex-shrink: 0; }
.zx-pricing-list i.fa-gift { color: var(--zenthrix-teal); }

/* ---------- Testimonials ---------- */
.zx-testimonial-card { padding: 28px 26px; }
.zx-stars { color: var(--zenthrix-gold); font-size: 14px; margin-bottom: 14px; }
.zx-testimonial-card p.zx-quote { font-size: 14.5px; line-height: 1.7; color: var(--zenthrix-text); margin-bottom: 20px; }
.zx-testimonial-person { display: flex; align-items: center; gap: 12px; }
.zx-testimonial-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--zenthrix-gold); }
.zx-testimonial-person strong { display: block; font-size: 14px; color: var(--zenthrix-text); }
.zx-testimonial-person span { font-size: 12px; color: var(--zenthrix-text-muted); }

/* ---------- FAQ (accordion, .accrodion typo preserved intentionally) ---------- */
.zx-accrodion-item { border-bottom: 1px solid var(--zenthrix-border-soft); }
.zx-accrodion-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 15.5px; color: var(--zenthrix-text); }
.zx-accrodion-header i { color: var(--zenthrix-gold); transition: transform 0.25s ease; }
.zx-accrodion-item.active .zx-accrodion-header i { transform: rotate(45deg); }
.zx-accrodion-body { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.zx-accrodion-item.active .zx-accrodion-body { max-height: 200px; }
.zx-accrodion-body p { font-size: 14px; color: var(--zenthrix-text-muted); line-height: 1.7; padding-bottom: 22px; margin: 0; }

/* ---------- CTA banner ---------- */
.zx-cta-banner {
  background: linear-gradient(135deg, var(--zenthrix-surface), var(--zenthrix-green));
  border: 1px solid var(--zenthrix-border);
  border-radius: var(--zenthrix-radius-lg);
  padding: 56px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.zx-cta-banner h2 { color: var(--zenthrix-text); font-size: 30px; max-width: 480px; }

/* ---------- Footer ---------- */
.zx-footer { background: var(--zenthrix-bg-darker); color: var(--zenthrix-text-muted); padding-top: 70px; border-top: 1px solid var(--zenthrix-border); }
.zx-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.zx-footer h4 { color: var(--zenthrix-text); font-size: 15px; margin-bottom: 18px; }
.zx-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.zx-footer ul a:hover { color: var(--zenthrix-gold-light); }
.zx-footer-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: var(--zenthrix-text); margin-bottom: 14px; }
.zx-footer-logo i { color: var(--zenthrix-gold); }
.zx-footer-social { display: flex; gap: 12px; margin-top: 18px; }
.zx-footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--zenthrix-border);
  display: flex; align-items: center; justify-content: center;
}
.zx-footer-social a:hover { background: var(--zenthrix-gradient-gold); color: #FFFFFF; border-color: transparent; }
.zx-footer-bottom { border-top: 1px solid var(--zenthrix-border-soft); padding: 22px 0; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.zx-footer-bottom a:hover { color: var(--zenthrix-gold-light); }

/* ---------- Instructors ---------- */
.zx-instructor-card { text-align: center; padding: 32px 24px; }
.zx-instructor-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 3px solid var(--zenthrix-gold); }
.zx-instructor-card h3 { font-size: 16px; margin-bottom: 4px; }
.zx-instructor-role { font-size: 13px; color: var(--zenthrix-gold-light); margin-bottom: 14px; }
.zx-instructor-social { display: flex; justify-content: center; gap: 10px; }
.zx-instructor-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--zenthrix-border-soft); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.zx-instructor-social a:hover { background: var(--zenthrix-gradient-gold); color: #FFFFFF; border-color: transparent; }

/* ---------- Checkout page ---------- */
.zx-checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .zx-checkout-grid { grid-template-columns: 1fr; } }
.zx-order-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--zenthrix-border-soft); font-size: 14px; color: var(--zenthrix-text-muted); }
.zx-order-row strong { color: var(--zenthrix-text); }
.zx-order-total { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; font-size: 20px; font-weight: 700; color: var(--zenthrix-text); }
.zx-order-total span { color: var(--zenthrix-gold-light); }
.zx-secure-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--zenthrix-text-muted); margin-top: 18px; justify-content: center; }
.zx-secure-note i { color: var(--zenthrix-gold); }

/* ---------- Auth pages ---------- */
.zx-auth-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--zenthrix-gradient-dark); padding: 40px 20px; }
.zx-auth-card { width: 100%; max-width: 420px; background: var(--zenthrix-surface); border: 1px solid var(--zenthrix-border-soft); border-radius: var(--zenthrix-radius-lg); padding: 40px 36px; box-shadow: var(--zenthrix-shadow); }
.zx-auth-logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 24px; font-weight: 800; color: var(--zenthrix-text); margin-bottom: 8px; }
.zx-auth-logo i { color: var(--zenthrix-gold); }
.zx-auth-title { text-align: center; font-size: 22px; margin-bottom: 6px; }
.zx-auth-subtitle { text-align: center; font-size: 14px; color: var(--zenthrix-text-muted); margin-bottom: 30px; }
.zx-auth-field { margin-bottom: 18px; }
.zx-auth-field label { display: block; font-size: 13px; color: var(--zenthrix-text-muted); margin-bottom: 8px; }
.zx-auth-field input { width: 100%; padding: 13px 16px; border-radius: var(--zenthrix-radius); border: 1px solid var(--zenthrix-border-soft); background: #1A2036; color: var(--zenthrix-text); font-family: var(--zenthrix-font); font-size: 14px; }
.zx-auth-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: 22px; color: var(--zenthrix-text-muted); }
.zx-auth-row a { color: var(--zenthrix-gold-light); }
.zx-auth-check { display: flex; align-items: center; gap: 8px; }
.zx-auth-divider { display: flex; align-items: center; gap: 12px; margin: 26px 0; font-size: 12px; color: var(--zenthrix-text-muted); }
.zx-auth-divider::before, .zx-auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--zenthrix-border-soft); }
.zx-auth-footer-text { text-align: center; font-size: 13.5px; color: var(--zenthrix-text-muted); margin-top: 6px; }
.zx-auth-footer-text a { color: var(--zenthrix-gold-light); font-weight: 600; }
.zx-auth-back { display: flex; justify-content: center; margin-top: 24px; font-size: 13px; }
.zx-auth-back a { color: var(--zenthrix-text-muted); }
.zx-auth-back a:hover { color: var(--zenthrix-gold-light); }
.zx-auth-plan-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(37,99,235,0.12); border: 1px solid var(--zenthrix-border);
  color: var(--zenthrix-gold-light); font-size: 13px; font-weight: 600;
  padding: 10px 16px; border-radius: 50px; margin-bottom: 24px;
}

/* OTP */
.zx-otp-inputs { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; }
.zx-otp-inputs input {
  width: 46px; height: 54px; text-align: center; font-size: 20px; font-weight: 600;
  border-radius: var(--zenthrix-radius); border: 1px solid var(--zenthrix-border-soft);
  background: #1A2036; color: var(--zenthrix-text); font-family: var(--zenthrix-font);
}
.zx-otp-inputs input:focus { outline: none; border-color: var(--zenthrix-gold); }
.zx-otp-resend { text-align: center; font-size: 13.5px; color: var(--zenthrix-text-muted); margin-bottom: 24px; }
.zx-otp-resend a { color: var(--zenthrix-gold-light); font-weight: 600; cursor: pointer; }

/* ---------- Courses page ---------- */
.zx-course-filters { display: flex; justify-content: center; gap: 12px; margin: 36px 0 10px; flex-wrap: wrap; }
.zx-filter-btn {
  padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--zenthrix-border-soft); background: var(--zenthrix-surface);
  color: var(--zenthrix-text-muted); cursor: pointer; transition: all 0.2s ease;
}
.zx-filter-btn:hover { border-color: var(--zenthrix-gold); color: var(--zenthrix-text); }
.zx-filter-btn.active { background: var(--zenthrix-gradient-gold); color: #FFFFFF; border-color: transparent; }

.zx-card-icon--start { background: var(--zenthrix-gradient-teal); }
.zx-card-icon--scale { background: var(--zenthrix-gradient-gold); }
.zx-card-icon--elite { background: var(--zenthrix-gradient-amber); }

.zx-course-card { position: relative; }
.zx-course-tag {
  position: absolute; top: 22px; right: 22px; font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 50px; color: #FFFFFF;
}
.zx-course-tag--start { background: var(--zenthrix-gradient-teal); }
.zx-course-tag--scale { background: var(--zenthrix-gradient-gold); }
.zx-course-tag--elite { background: var(--zenthrix-gradient-amber); }

/* ---------- Legal pages ---------- */
.zx-legal-content { max-width: 760px; margin: 0 auto; }
.zx-legal-content h2 { font-size: 21px; margin-top: 38px; margin-bottom: 14px; color: var(--zenthrix-gold-light); }
.zx-legal-content h2:first-of-type { margin-top: 0; }
.zx-legal-content p { font-size: 14.5px; line-height: 1.85; color: var(--zenthrix-text-muted); margin-bottom: 14px; }
.zx-legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.zx-legal-content li { font-size: 14.5px; line-height: 1.8; color: var(--zenthrix-text-muted); margin-bottom: 8px; }
.zx-legal-content strong { color: var(--zenthrix-text); }
.zx-legal-updated { font-size: 13px; color: var(--zenthrix-text-muted); margin-bottom: 40px; display: block; }
.zx-legal-note {
  background: rgba(37,99,235,0.10); border: 1px solid var(--zenthrix-border);
  border-radius: var(--zenthrix-radius); padding: 16px 20px; font-size: 13.5px;
  color: var(--zenthrix-gold-light); margin-bottom: 40px; display: flex; gap: 10px; align-items: flex-start;
}

/* ---------- Contact page ---------- */
.zx-contact-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .zx-contact-grid { grid-template-columns: 1fr; } }

/* ---------- Founder teaser (homepage) ---------- */
.zx-founder-teaser { display: grid; grid-template-columns: 0.55fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .zx-founder-teaser { grid-template-columns: 1fr; } }

/* ---------- Founder page ---------- */
.zx-founder-hero { padding: 70px 0; background: var(--zenthrix-gradient-dark); }
.zx-founder-hero .zx-container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.zx-founder-photo { border-radius: var(--zenthrix-radius-lg); box-shadow: var(--zenthrix-shadow); border: 1px solid var(--zenthrix-border-soft); width: 100%; }
.zx-founder-quote {
  border-left: 3px solid var(--zenthrix-gold); padding-left: 20px; margin: 26px 0;
  font-size: 19px; line-height: 1.6; color: var(--zenthrix-gold-light); font-weight: 500;
}
.zx-founder-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.zx-founder-stats div strong { display: block; font-size: 24px; color: var(--zenthrix-text); }
.zx-founder-stats div span { font-size: 12.5px; color: var(--zenthrix-text-muted); }

@media (max-width: 900px) {
  .zx-founder-hero .zx-container { grid-template-columns: 1fr; }
  .zx-footer-grid { grid-template-columns: 1fr 1fr; }
  .zx-cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .zx-footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* =========================================================
   MERGED FROM LATER WORK — dashboard, admin panel, etc.
   (these page types didn't exist yet in the file above)
   ========================================================= */

/* ---------- Dashboard ---------- */
.zx-dash-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: var(--zenthrix-bg); }
.zx-dash-sidebar { background: var(--zenthrix-bg-darker); border-right: 1px solid var(--zenthrix-border); padding: 26px 18px; position: sticky; top: 0; height: 100vh; overflow-y: auto; scrollbar-width: thin; }
.zx-dash-logo { display: flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 800; color: var(--zenthrix-text); padding: 0 8px 26px; }
.zx-dash-logo i { color: var(--zenthrix-gold); }
.zx-dash-nav { display: flex; flex-direction: column; gap: 4px; }
.zx-dash-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--zenthrix-radius); font-size: 14px; font-weight: 500; color: var(--zenthrix-text-muted); }
.zx-dash-nav a i { width: 18px; text-align: center; }
.zx-dash-nav a:hover { background: rgba(37,99,235,0.10); color: var(--zenthrix-text); }
.zx-dash-nav a.active { background: var(--zenthrix-gradient-gold); color: #FFFFFF; }
.zx-dash-main { padding: 34px 38px; }
.zx-dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 14px; }
.zx-dash-user { display: flex; align-items: center; gap: 12px; }
.zx-dash-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--zenthrix-gradient-gold); color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; overflow: hidden; flex-shrink: 0; }
.zx-dash-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.zx-stat-card { background: var(--zenthrix-surface); border: 1px solid var(--zenthrix-border-soft); border-radius: var(--zenthrix-radius-lg); padding: 22px 24px; min-width: 0; }
.zx-stat-card .zx-stat-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; background: var(--zenthrix-gradient-gold); color: #FFFFFF; }
.zx-stat-value { font-size: 24px; font-weight: 800; color: var(--zenthrix-text); }
.zx-stat-label { font-size: 12.5px; color: var(--zenthrix-text-muted); margin-top: 4px; }

.zx-progress-track { height: 8px; background: rgba(255,255,255,0.10); border-radius: 50px; overflow: hidden; margin-top: 10px; }
.zx-progress-fill { height: 100%; background: var(--zenthrix-gradient-gold); border-radius: 50px; }

.zx-course-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--zenthrix-border-soft); }
.zx-course-row:last-child { border-bottom: none; }
.zx-course-row-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(37,99,235,0.14); color: var(--zenthrix-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zx-course-row-info { flex-grow: 1; min-width: 0; }
.zx-course-row-info h4 { font-size: 14.5px; margin: 0 0 4px; color: var(--zenthrix-text); }
.zx-course-row-info span { font-size: 12px; color: var(--zenthrix-text-muted); }

.zx-referral-box { background: var(--zenthrix-surface-light); border: 1px solid var(--zenthrix-border); border-radius: var(--zenthrix-radius); padding: 16px 18px; display: flex; align-items: center; gap: 12px; justify-content: space-between; flex-wrap: wrap; }
.zx-referral-code { font-family: monospace; font-size: 15px; font-weight: 700; color: var(--zenthrix-gold-light); letter-spacing: 1px; }

.zx-dash-mobile-bar { display: none; }
.zx-dash-overlay { display: none; }

@media (max-width: 900px) {
  .zx-dash-layout { grid-template-columns: 1fr; }

  .zx-dash-mobile-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--zenthrix-bg-darker); border-bottom: 1px solid var(--zenthrix-border);
    padding: 3px 18px; position: sticky; top: 0; z-index: 40;
  }
  .zx-dash-mobile-bar img { height: 70px; width: auto; display: block; }
  .zx-mobile-bar-right { display: flex; align-items: center; gap: 10px; }
  .zx-mobile-avatar-wrap { position: relative; }
  .zx-mobile-avatar-btn { background: none; border: none; padding: 0; cursor: pointer; display: flex; }
  .zx-mobile-avatar-btn .zx-dash-avatar { width: 38px; height: 38px; font-size: 14px; }
  .zx-mobile-avatar-dropdown {
    display: none; flex-direction: column; gap: 2px;
    position: absolute; top: 48px; right: 0; min-width: 170px; z-index: 75;
    background: var(--zenthrix-surface); border: 1px solid var(--zenthrix-border-soft);
    border-radius: var(--zenthrix-radius); box-shadow: var(--zenthrix-shadow); padding: 8px;
  }
  .zx-mobile-avatar-dropdown--open { display: flex; }
  .zx-mobile-avatar-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--zenthrix-text); }
  .zx-mobile-avatar-dropdown a:hover { background: rgba(37,99,235,0.10); }
  .zx-mobile-avatar-dropdown a.zx-logout-option { color: var(--zenthrix-coral); }
  .zx-dash-mobile-toggle {
    background: none; border: none; color: var(--zenthrix-text); font-size: 20px; cursor: pointer;
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .zx-dash-sidebar {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; height: 100vh; width: 260px; max-width: 82vw;
    transform: translateX(-100%); transition: transform 0.25s ease; z-index: 60;
  }
  .zx-dash-sidebar.zx-dash-sidebar--open { transform: translateX(0); }

  .zx-dash-overlay.zx-dash-sidebar-backdrop--open {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 50;
  }

  .zx-dash-main { padding: 24px 18px; min-width: 0; }
}

/* ---------- Admin panel ---------- */
.zx-admin-table { width: 100%; border-collapse: collapse; }
.zx-admin-table th { text-align: left; padding: 12px 14px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--zenthrix-text-muted); border-bottom: 1px solid var(--zenthrix-border-soft); }
.zx-admin-table td { padding: 14px; font-size: 13.5px; border-bottom: 1px solid var(--zenthrix-border-soft); color: var(--zenthrix-text); }
.zx-admin-table tr:last-child td { border-bottom: none; }
.zx-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 50px; }
.zx-badge--pending { background: rgba(180,83,9,0.22); color: var(--zenthrix-amber); }
.zx-badge--active { background: rgba(14,159,110,0.22); color: var(--zenthrix-teal); }
.zx-badge--rejected { background: rgba(192,57,43,0.22); color: var(--zenthrix-coral); }
.zx-icon-btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--zenthrix-border-soft); background: rgba(255,255,255,0.05); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; color: var(--zenthrix-text-muted); cursor: pointer; }
.zx-icon-btn--approve:hover { background: var(--zenthrix-teal); color: #FFFFFF; border-color: transparent; }
.zx-icon-btn--reject:hover { background: var(--zenthrix-coral); color: #FFFFFF; border-color: transparent; }
.zx-admin-tabs { display: flex; gap: 6px; margin-bottom: 22px; border-bottom: 1px solid var(--zenthrix-border-soft); }
.zx-admin-tab { padding: 11px 18px; font-size: 13.5px; font-weight: 600; color: var(--zenthrix-text-muted); border-bottom: 2px solid transparent; cursor: pointer; }
.zx-admin-tab.active { color: var(--zenthrix-gold-light); border-bottom-color: var(--zenthrix-gold); }