@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --surface: #1c1c1c;
  --surface-hover: #222222;
  --accent: #A8FF00;
  --accent-dim: #8acc00;
  --accent-glow: rgba(168,255,0,0.15);
  --accent-glow-strong: rgba(168,255,0,0.25);
  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(168,255,0,0.2);
  --green: #22c55e;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(168,255,0,0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
}

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

/* ==========================================================================
   ULTRA-PREMIUM CUSTOM SCROLLBAR (GLOBAL & MODALS)
   ========================================================================== */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) #080808;
}

/* WebKit & Chromium (Chrome, Edge, Brave, Opera, Safari) */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background: #080808;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  border: 1.5px solid #080808;
  transition: all 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(168, 255, 0, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background: #8acc00;
}

::-webkit-scrollbar-corner {
  background: #080808;
}

/* Overlay & modal scrollbars */
.auth-overlay, .checkout-overlay {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
.auth-overlay::-webkit-scrollbar,
.checkout-overlay::-webkit-scrollbar {
  width: 6px;
}
.auth-overlay::-webkit-scrollbar-track,
.checkout-overlay::-webkit-scrollbar-track {
  background: transparent;
}
.auth-overlay::-webkit-scrollbar-thumb,
.checkout-overlay::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
}
.auth-overlay::-webkit-scrollbar-thumb:hover,
.checkout-overlay::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Inter', system-ui, sans-serif; margin: 0; line-height: 1.1; }
p { margin: 0; }
.container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===================== NOISE + BG BLOBS ===================== */
.bg-noise {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.025;
}
.blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: -1; filter: blur(140px); }
.blob-1 { width: 800px; height: 800px; top: -300px; right: -200px; background: var(--accent); opacity: 0.04; }
.blob-2 { width: 600px; height: 600px; top: 50%; left: -250px; background: #00ff88; opacity: 0.03; }
.blob-3 { width: 500px; height: 500px; bottom: -150px; left: 50%; transform: translateX(-50%); background: var(--accent); opacity: 0.025; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 12px; z-index: 100; padding: 0 16px;
  transition: .3s ease;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 12px 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.04);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; object-fit: contain; filter: brightness(1.2); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a:not(.nav-cta) {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; color: var(--text-soft);
  transition: all .2s;
}
.main-nav > a:not(.nav-cta):hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-full);
  background: var(--accent); color: #080808;
  font-size: 13px; font-weight: 700;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 0 20px rgba(168,255,0,0.2);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(168,255,0,0.3); }
.nav-cta span { transition: transform .2s; }
.nav-cta:hover span { transform: translateX(3px); }

.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card); place-items: center; }
.menu-toggle span:not(.sr-only) { width: 18px; height: 2px; display: block; border-radius: 4px; background: var(--text); transition: all .25s; position: absolute; }
.menu-toggle span:first-child { transform: translateY(-5px); }
.menu-toggle span:nth-child(2) { transform: translateY(5px); }
.menu-toggle.is-open span:first-child { transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none; position: absolute; top: 72px; right: 16px; left: 16px;
  padding: 8px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 99;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; color: var(--text-soft);
  transition: all .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.mobile-nav a .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: grid; place-items: center;
  font-size: 14px; color: var(--text-muted); transition: all .2s;
}
.mobile-nav a:hover .arrow { background: var(--accent); color: #080808; }
.mobile-nav-bottom {
  margin-top: 8px; padding: 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); display: flex; align-items: center; gap: 12px;
}
.mobile-nav-bottom .avatars { display: flex; }
.mobile-nav-bottom .avatars span {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg-card);
  background: var(--accent); color: #080808; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; margin-left: -8px;
}
.mobile-nav-bottom .avatars span:first-child { margin-left: 0; }
.mobile-nav-bottom .text { font-size: 12px; }
.mobile-nav-bottom .text strong { display: block; font-weight: 700; color: var(--text); }
.mobile-nav-bottom .text small { color: var(--text-muted); }

/* ===================== HERO ===================== */
.hero {
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,255,0,0.04) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px; border-radius: 50%;
  background: rgba(168,255,0,0.03); filter: blur(100px); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-content { max-width: 600px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: var(--radius-full);
  background: rgba(20,20,20,0.85); border: 1px solid rgba(168,255,0,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 20px rgba(168,255,0,0.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.6px; color: var(--text-soft);
}
.eyebrow-badge {
  padding: 2px 8px; border-radius: var(--radius-full);
  background: rgba(168,255,0,0.12); color: var(--accent);
  font-size: 10px; font-weight: 800; letter-spacing: 0.6px; margin-left: 2px;
  border: 1px solid rgba(168,255,0,0.25);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px var(--accent-glow); } 50% { box-shadow: 0 0 0 8px rgba(168,255,0,0.05); } }

h1 {
  font-size: clamp(44px, 5.8vw, 76px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 0.96; margin: 24px 0 22px;
  color: var(--text);
}
h1 .serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.02em; color: rgba(255,255,255,0.9); }
h1 .highlight {
  position: relative; display: inline-block; padding-bottom: 2px;
  background: linear-gradient(135deg, var(--accent) 0%, #d8ff7a 60%, #ffffff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(168,255,0,0.22));
}
h1 .highlight::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px; background: var(--accent); border-radius: 20px;
  opacity: 0.25;
}
.hero-copy { font-size: 16.5px; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 520px; font-weight: 450; }

.hero-actions { display: flex; align-items: center; gap: 16px; margin: 32px 0 28px; flex-wrap: wrap; }
.button-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, #b8ff14 0%, var(--accent) 100%);
  color: #080808; font-size: 15px; font-weight: 800;
  box-shadow: 0 0 35px rgba(168,255,0,0.28), 0 8px 24px rgba(0,0,0,0.4);
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap;
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(168,255,0,0.45), 0 12px 32px rgba(0,0,0,0.5);
}
.button-primary .icon-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: #080808; color: var(--accent);
  display: grid; place-items: center; font-size: 12px; transition: transform .3s;
}
.button-primary:hover .icon-circle { transform: rotate(12deg); }
.button-primary .arrow-icon { opacity: 0.6; transition: transform .2s; }
.button-primary:hover .arrow-icon { transform: translate(2px, -2px); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 12px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 14px; font-weight: 700; color: var(--text-soft); transition: all .2s ease;
}
.text-link:hover {
  border-color: rgba(168,255,0,0.35);
  background: rgba(168,255,0,0.06);
  color: var(--text);
  transform: translateY(-2px);
}
.play-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(168,255,0,0.12); color: var(--accent);
  display: grid; place-items: center; font-size: 11px; padding-left: 2px;
  border: 1px solid rgba(168,255,0,0.25);
}

.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07);
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all .2s ease;
}
.trust-badge:hover {
  border-color: rgba(168,255,0,0.25);
  background: rgba(168,255,0,0.04);
  color: var(--text);
  transform: translateY(-1px);
}
.trust-badge .check { color: var(--accent); font-weight: 900; font-size: 13px; }

.hero-visual { position: relative; height: 480px; }
.hero-orbit { position: absolute; border: 1px solid rgba(168,255,0,0.06); border-radius: 50%; }
.orbit-a { width: 440px; height: 440px; right: -30px; top: 10px; }
.orbit-b { width: 340px; height: 340px; right: 20px; top: 60px; border-style: dashed; }

/* main dashboard card */
.main-card {
  position: absolute; z-index: 2;
  width: min(100%, 520px); min-height: 340px;
  padding: 28px 28px 18px; right: 0; top: 30px;
  border-radius: var(--radius-lg);
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
}
.main-card::before {
  content: ''; position: absolute; width: 200px; height: 200px;
  top: -120px; right: -70px; border-radius: 50%;
  background: var(--accent); opacity: 0.08; filter: blur(40px);
}
.card-topline, .chart-heading, .chart-footer {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.card-topline { color: var(--text-muted); font-size: 9px; letter-spacing: 1.25px; font-weight: 700; }
.live-label { color: var(--accent); letter-spacing: 0.9px; display: flex; align-items: center; gap: 5px; }
.live-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; animation: pulse 2s infinite; }
.chart-heading { margin-top: 28px; font-size: 22px; font-weight: 800; letter-spacing: -0.8px; }
.chart-heading b { color: var(--accent); font-size: 14px; font-weight: 700; }
.chart { width: 100%; height: 170px; margin: 4px 0 -1px; color: var(--text); display: block; }
.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawChartLine 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.chart-area {
  opacity: 0;
  animation: fadeInChartArea 1.2s ease 1.6s forwards;
}
.chart-dot {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: popChartDot 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
}
@keyframes drawChartLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeInChartArea {
  to { opacity: 1; }
}
@keyframes popChartDot {
  0% { opacity: 0; transform: scale(0); }
  70% { transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}
.chart-footer {
  padding: 10px 0 0; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 8px; font-weight: 700; letter-spacing: 1.4px;
}

/* floating notes */
.floating-note {
  position: absolute; z-index: 3;
  display: flex; gap: 10px; align-items: center;
  padding: 12px 16px 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.floating-note small { display: block; margin-bottom: 2px; color: var(--text-muted); font-size: 8px; letter-spacing: 0.9px; font-weight: 700; }
.floating-note strong { font-size: 11px; font-weight: 700; white-space: nowrap; color: var(--text); }
.note-icon {
  width: 30px; height: 30px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-glow); color: var(--accent);
  font-size: 17px; font-weight: 700; border: 1px solid var(--border-accent);
}
.note-icon.shield { background: rgba(34,197,94,0.15); color: var(--green); border-color: rgba(34,197,94,0.2); font-size: 13px; }
.note-up { top: 30px; right: -16px; animation: floatSlow 6s ease-in-out infinite alternate; }
.note-down { bottom: 28px; left: -40px; animation: floatSlowReverse 7s ease-in-out infinite alternate; }

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}
@keyframes floatSlowReverse {
  0% { transform: translateY(0px); }
  100% { transform: translateY(8px); }
}

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
.section-intro { text-align: center; margin-bottom: 50px; }
.section-intro .eyebrow {
  display: inline-flex; background: var(--accent-glow); color: var(--accent);
  border: 1px solid var(--border-accent); box-shadow: 0 0 20px rgba(168,255,0,0.08);
}
.section-intro .eyebrow svg { margin-right: 6px; }
h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 16px;
}
h2 .serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }
h2 .highlight-green {
  position: relative; display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ccff66);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-intro > p { color: var(--text-soft); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ===================== LEARN CARDS ===================== */
.learn-section { background: linear-gradient(180deg, var(--bg) 0%, #0a0f08 100%); padding: 70px 0 80px; }
.learning-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.learning-card {
  position: relative; overflow: hidden;
  padding: 28px 24px; min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(25,25,25,0.9) 0%, rgba(18,18,18,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.learning-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.learning-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,255,0,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(168,255,0,0.04);
}
.learning-card::before {
  content: ''; position: absolute; width: 140px; height: 140px;
  top: -60px; right: -60px; border-radius: 50%;
  opacity: 0.15; filter: blur(40px); transition: all .4s ease;
}
.learning-card:nth-child(1)::before { background: var(--accent); }
.learning-card:nth-child(2)::before { background: #00e5ff; }
.learning-card:nth-child(3)::before { background: #ff8a00; }
.learning-card:nth-child(4)::before { background: #ff3d71; }
.learning-card:hover::before { opacity: 0.35; transform: scale(1.2); }
.card-number {
  position: absolute; top: 22px; right: 22px;
  color: rgba(255,255,255,0.12); font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px; z-index: 1;
}
.lesson-icon {
  width: 54px; height: 54px; margin-bottom: 32px;
  border-radius: 14px;
  display: flex; align-items: end; justify-content: center; gap: 4px;
  position: relative; z-index: 1;
  transition: transform .3s ease;
}
.learning-card:hover .lesson-icon { transform: scale(1.08); }
.lesson-icon.trend-icon { background: rgba(168,255,0,0.12); color: var(--accent); padding-bottom: 14px; border: 1px solid rgba(168,255,0,0.15); }
.trend-icon span { width: 5px; border-radius: 3px; background: currentColor; }
.trend-icon span:nth-child(1) { height: 10px; }
.trend-icon span:nth-child(2) { height: 18px; }
.trend-icon span:nth-child(3) { height: 28px; }
.lesson-icon.setup-icon { background: rgba(0,229,255,0.1); color: #00e5ff; padding: 0 10px; align-items: center; border: 1px solid rgba(0,229,255,0.12); }
.setup-icon i { width: 4px; height: 20px; position: relative; border-radius: 3px; background: currentColor; display: block; font-style: normal; }
.setup-icon i::before, .setup-icon i::after { content: ''; width: 9px; height: 3px; position: absolute; left: -2.5px; border-radius: 3px; background: currentColor; }
.setup-icon i::before { top: 4px; }
.setup-icon i::after { bottom: 4px; }
.setup-icon i:nth-child(2) { height: 29px; }
.setup-icon i:nth-child(3) { height: 14px; }
.lesson-icon.entry-icon { background: rgba(255,138,0,0.1); color: #ff8a00; align-items: center; font-size: 31px; font-weight: 700; border: 1px solid rgba(255,138,0,0.12); }
.lesson-icon.risk-icon { background: rgba(255,61,113,0.1); color: #ff3d71; align-items: center; font-size: 31px; font-weight: 700; border: 1px solid rgba(255,61,113,0.12); }
.learning-card h3 {
  margin-bottom: 12px; font-size: 19px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text); position: relative; z-index: 1;
}
.learning-card p {
  color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.65; flex: 1;
  position: relative; z-index: 1;
}
.card-arrow {
  position: absolute; bottom: 20px; right: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08); display: grid; place-items: center;
  color: rgba(255,255,255,0.2); font-size: 15px; transition: all .3s ease;
  z-index: 1;
}
.learning-card:hover .card-arrow {
  background: var(--accent); color: #080808; border-color: var(--accent);
  box-shadow: 0 0 20px rgba(168,255,0,0.25);
}

/* featured card (first) */
.learning-card.featured-card {
  background: linear-gradient(160deg, rgba(168,255,0,0.08) 0%, rgba(12,20,5,0.95) 100%);
  border-color: rgba(168,255,0,0.15);
}
.learning-card.featured-card::after {
  background: linear-gradient(160deg, rgba(168,255,0,0.06) 0%, transparent 40%);
}
.featured-card .card-number { color: rgba(168,255,0,0.25); }
.featured-card .lesson-icon { background: var(--accent); color: #080808; border-color: var(--accent); }
.featured-card:hover .card-arrow { background: var(--accent); color: #080808; }

/* ===================== VIDEO SECTION ===================== */
.video-section { background: var(--bg-elevated); padding: 60px 0 80px; }
.video-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 60px; }
.video-copy > p:not(.eyebrow) { max-width: 400px; color: var(--text-soft); font-size: 16px; line-height: 1.7; }
.quote-mark { height: 25px; margin: 28px 0 -13px; color: var(--accent); font-family: Georgia, serif; font-size: 56px; line-height: 1; opacity: 0.3; }
blockquote {
  max-width: 380px; padding-left: 18px;
  border-left: 3px solid var(--accent);
  font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.65; font-weight: 700;
  color: var(--text);
}
.video-frame {
  padding: 14px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.video-top {
  padding: 0 8px 12px; display: flex; justify-content: space-between;
  color: var(--text-muted); font-size: 8px; letter-spacing: 1.25px; font-weight: 700;
}
.youtube-wrap { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-sm); background: #000; }
.youtube-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===================== FRAMEWORK / COURSE MAP ===================== */
.course-map-section { background: linear-gradient(180deg, var(--bg) 0%, #080d05 100%); }
.course-map-layout { display: grid; grid-template-columns: 0.84fr 1.16fr; align-items: center; gap: 80px; }
.course-map-copy > p:not(.eyebrow) { max-width: 405px; color: var(--text-soft); font-size: 16px; line-height: 1.7; }
.map-link { margin-top: 24px; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.map-link span { transition: transform .2s; }
.map-link:hover span { transform: translateX(4px); }

.framework-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.framework-title {
  padding: 0 4px 18px; display: flex; justify-content: space-between;
  color: var(--text-muted); font-size: 9px; letter-spacing: 1.2px; font-weight: 700;
}
.framework-title b { color: var(--accent); }
.framework-list { border-top: 1px solid var(--border); }
.framework-item {
  min-height: 110px; padding: 22px 4px;
  display: grid; grid-template-columns: 44px 1fr 30px; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border);
}
.framework-item:last-child { padding-bottom: 8px; border-bottom: 0; }
.framework-item > span {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-glow); color: var(--accent);
  font-size: 11px; font-weight: 700; border: 1px solid var(--border-accent);
}
.framework-item h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; letter-spacing: -0.03em; }
.framework-item p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.55; }
.framework-item i {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  font-style: normal; font-size: 14px; transition: all .2s;
  border: 1px solid var(--border);
}
.framework-item:hover i { background: var(--accent); color: #080808; border-color: var(--accent); }

/* ===================== PROCESS SECTION ===================== */
.process-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-heading {
  margin-bottom: 50px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 30px;
}
.process-heading .eyebrow { color: var(--accent); background: var(--accent-glow); border-color: var(--border-accent); }
.process-heading h2 span { color: var(--accent); }
.process-heading > p { max-width: 380px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step {
  min-height: 200px; padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(168,255,0,0.02); }
.step > span {
  display: block; margin-bottom: 40px;
  color: var(--accent); font-size: 11px; letter-spacing: 1.1px; font-weight: 700;
}
.step h3 { margin-bottom: 10px; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.step p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }

/* ===================== FEEDBACK SECTION ===================== */
.feedback-section { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); }
.feedback-heading {
  margin-bottom: 50px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 30px;
}
.feedback-heading h2 { margin: 0; }
.feedback-heading > p { max-width: 360px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card {
  min-height: 280px; padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(25,25,25,0.9) 0%, rgba(18,18,18,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.review-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,255,0,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 30px rgba(168,255,0,0.03);
}
.review-card-accent {
  border-color: rgba(168,255,0,0.1);
  background: linear-gradient(160deg, rgba(168,255,0,0.06) 0%, rgba(18,18,18,0.95) 100%);
}
.review-stars-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.review-stars { color: #fbbf24; letter-spacing: 3px; font-size: 14px; }
.review-date { color: rgba(255,255,255,0.2); font-size: 11px; font-weight: 500; }
.review-text {
  color: rgba(255,255,255,0.7);
  font-size: 14px; line-height: 1.7; font-weight: 500;
  letter-spacing: -0.01em; flex: 1;
  position: relative; z-index: 1;
}
.review-author {
  padding-top: 18px; display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(168,255,0,0.15), rgba(168,255,0,0.05));
  color: var(--accent);
  font-size: 12px; font-weight: 800;
  border: 1px solid rgba(168,255,0,0.15);
}
.review-author strong { display: block; margin-bottom: 2px; font-size: 13px; font-weight: 700; }
.review-author small { display: block; color: rgba(255,255,255,0.3); font-size: 11px; }
.review-author strong { display: block; margin-bottom: 2px; font-size: 12px; }
.review-author small { display: block; color: var(--text-muted); font-size: 10px; }

/* ===================== FAQ SECTION ===================== */
.faq-section { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); }
.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: start; gap: 80px; }
.faq-copy > p:not(.eyebrow) { max-width: 360px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
.faq-chip {
  width: fit-content; margin-top: 28px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(168,255,0,0.15);
  background: rgba(168,255,0,0.06);
  color: var(--accent); font-size: 12px; font-weight: 700;
}
.faq-chip span {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: #080808; font-size: 16px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(25,25,25,0.9) 0%, rgba(18,18,18,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-item[open] {
  border-color: rgba(168,255,0,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 20px rgba(168,255,0,0.03);
}
.faq-item summary {
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--text);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: rgba(255,255,255,0.9); }
.faq-item summary .faq-icon {
  width: 36px; height: 36px; flex: 0 0 auto;
  border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3);
  font-size: 18px; transition: all .35s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(255,255,255,0.06);
}
.faq-item summary:hover .faq-icon {
  background: rgba(168,255,0,0.08); color: var(--accent);
  border-color: rgba(168,255,0,0.15);
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--accent); color: #080808;
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(168,255,0,0.2);
}
.faq-answer {
  padding: 0 24px 22px;
  color: rgba(255,255,255,0.5);
  font-size: 14px; line-height: 1.75;
}

/* ===================== ENROLL CTA ===================== */
.enroll-section { padding: 100px 0; background: var(--bg); }
.enroll-card {
  min-height: 360px; padding: 60px;
  position: relative; overflow: hidden;
  display: flex; justify-content: space-between; align-items: center; gap: 50px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0d1a05 0%, #142208 50%, #1a2a0a 100%);
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 60px rgba(168,255,0,0.06);
}
.enroll-light {
  width: 440px; height: 440px;
  position: absolute; right: -80px; top: -180px;
  border-radius: 50%; border: 50px solid rgba(168,255,0,0.06);
}
.enroll-copy { position: relative; z-index: 1; }
.enroll-copy .eyebrow { color: var(--accent); background: var(--accent-glow); border-color: var(--border-accent); }
.enroll-copy h2 { margin-bottom: 16px; }
.enroll-copy h2 span { color: var(--accent); }
.enroll-copy > p { max-width: 440px; color: var(--text-soft); line-height: 1.65; }
.price-box {
  width: 260px; flex: 0 0 auto; padding: 28px;
  position: relative; z-index: 1; text-align: center;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.price-label { color: var(--accent); font-size: 10px; letter-spacing: 1.3px; font-weight: 700; }
.price {
  margin: 6px 0 -2px; color: var(--text);
  font-size: 52px; line-height: 1; letter-spacing: -2px; font-weight: 900;
}
.price small { vertical-align: 16px; font-size: 22px; letter-spacing: 0; color: var(--text-soft); }
.price-box > p { margin: 4px 0 18px; color: var(--text-muted); font-size: 12px; }
.button-dark {
  width: 100%; min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--radius-full);
  background: var(--accent); color: #080808;
  font-size: 14px; font-weight: 700;
  transition: all .25s;
  box-shadow: 0 0 25px rgba(168,255,0,0.2);
}
.button-dark:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(168,255,0,0.3); }

/* ===================== FOOTER ===================== */
.site-footer {
  position: static;
  padding: 26px 16px 34px;
  background: transparent;
  border: none;
}

/* Footer pill ka size bilkul header jaisa (same container width) */
.site-footer > .container.footer-pill,
.footer-pill.container {
  width: min(1280px, calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
}

.footer-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%;
  padding: 8px 12px 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(20,20,20,0.8) !important;
  backdrop-filter: blur(24px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.5) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.footer-brand img { height: 30px; width: auto; object-fit: contain; filter: brightness(1.1); }
.footer-links { display: flex; align-items: center; gap: 6px; }
.footer-links a {
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45);
  transition: all .2s; white-space: nowrap;
}
.footer-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.footer-links span { font-size: 11.5px; }

/* ===================== SITE HEADER SCROLLED ===================== */
.site-header.scrolled .nav-wrap {
  background: rgba(12, 12, 12, 0.94);
  border-color: rgba(168, 255, 0, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(168, 255, 0, 0.06);
}

/* ===================== SCROLL REVEAL SYSTEM ===================== */
.reveal,
.reveal-up,
.reveal-scale,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition-property: opacity, transform, filter;
  transition-duration: 0.95s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(42px);
  filter: blur(8px);
}

.reveal-scale {
  transform: scale(0.93) translateY(28px);
  filter: blur(8px);
}

.reveal-left {
  transform: translateX(-42px);
  filter: blur(8px);
}

.reveal-right {
  transform: translateX(42px);
  filter: blur(8px);
}

.reveal-fade {
  opacity: 0;
  filter: blur(8px);
}

/* Revealed active states */
.reveal.is-revealed,
.reveal-up.is-revealed,
.reveal-scale.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-fade.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

/* Group reveals (for grids and card lists) */
.reveal-group > * {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(8px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.reveal-group.is-revealed > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger delays for child items in groups */
.reveal-group.is-revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.is-revealed > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-group.is-revealed > *:nth-child(3) { transition-delay: 0.28s; }
.reveal-group.is-revealed > *:nth-child(4) { transition-delay: 0.40s; }
.reveal-group.is-revealed > *:nth-child(5) { transition-delay: 0.52s; }
.reveal-group.is-revealed > *:nth-child(6) { transition-delay: 0.64s; }

/* Custom delays */
[data-delay="50"]  { transition-delay: 50ms !important; }
[data-delay="100"] { transition-delay: 100ms !important; }
[data-delay="150"] { transition-delay: 150ms !important; }
[data-delay="200"] { transition-delay: 200ms !important; }
[data-delay="250"] { transition-delay: 250ms !important; }
[data-delay="300"] { transition-delay: 300ms !important; }
[data-delay="350"] { transition-delay: 350ms !important; }
[data-delay="400"] { transition-delay: 400ms !important; }
[data-delay="500"] { transition-delay: 500ms !important; }

/* ===================== HERO ENTRANCE ANIMATIONS ===================== */
.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .eyebrow { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.22s; }
.hero-content .hero-copy { animation-delay: 0.36s; }
.hero-content .hero-actions { animation-delay: 0.5s; }
.hero-content .trust-row { animation-delay: 0.64s; }

.hero-visual {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  filter: blur(8px);
  animation: heroVisualEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroVisualEntrance {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-scale,
  .reveal-left,
  .reveal-right,
  .reveal-fade,
  .reveal-group > *,
  .hero-content > *,
  .hero-visual,
  .chart-line,
  .chart-area,
  .chart-dot,
  .floating-note {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .learning-grid { grid-template-columns: repeat(2, 1fr); }
  .video-layout { grid-template-columns: 1fr; gap: 40px; }
  .course-map-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .process-heading, .feedback-heading { display: block; }
  .process-heading > p, .feedback-heading > p { margin-top: 16px; }
  .enroll-card { padding: 48px; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 32px, 540px); }
  .main-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero { padding: 50px 0 40px; }
  h1 { font-size: clamp(36px, 8vw, 48px); letter-spacing: -0.03em; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .button-primary { width: 100%; justify-content: center; }
  .learning-grid { grid-template-columns: 1fr; }
  .learning-card { min-height: 240px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .review-grid { grid-template-columns: 1fr; }
  .enroll-card { flex-direction: column; padding: 36px 28px; text-align: center; }
  .price-box { width: 100%; }
  .footer-pill { flex-wrap: wrap; justify-content: center; gap: 10px; border-radius: 22px; padding: 12px 16px; }
  .footer-links a { font-size: 11px; padding: 6px 12px; }
  .footer-links span { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 34px; }
  .section { padding: 64px 0; }
  h2 { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .step:last-child { border-bottom: none !important; }
}

/* ===================== USER AVATAR & DROPDOWN ===================== */
.user-avatar-wrap {
  position: relative;
  margin-left: 8px;
}

.user-avatar-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,255,0,0.2), rgba(168,255,0,0.08));
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 16px rgba(168,255,0,0.2);
  position: relative;
  overflow: hidden;
}
.user-avatar-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(168,255,0,0.25), transparent 70%);
  opacity: 0;
  transition: opacity .25s;
}
.user-avatar-btn:hover::before { opacity: 1; }
.user-avatar-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(168,255,0,0.35);
}

.user-initials {
  font-size: 13px; font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  position: relative; z-index: 1;
  text-transform: uppercase;
}

/* Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(168,255,0,0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(168,255,0,0.06);
  padding: 8px;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.4,0,.2,1),
              transform .22s cubic-bezier(.4,0,.2,1);
  transform-origin: top right;
  z-index: 200;
}
.user-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; right: 14px;
  width: 12px; height: 12px;
  background: rgba(18,18,18,0.97);
  border-left: 1px solid rgba(168,255,0,0.15);
  border-top: 1px solid rgba(168,255,0,0.15);
  transform: rotate(45deg);
  border-radius: 2px;
}

.user-avatar-wrap.is-open .user-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.user-dropdown-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 10px 14px;
}
.user-dropdown-avatar {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,255,0,0.2), rgba(168,255,0,0.06));
  border: 2px solid rgba(168,255,0,0.3);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
}
.user-dropdown-info {
  display: flex; flex-direction: column; gap: 2px;
  overflow: hidden;
}
.user-dropdown-info strong {
  font-size: 14px; font-weight: 700;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.user-dropdown-info span {
  font-size: 11px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.user-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.user-dropdown-item {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .18s ease;
  text-align: left;
}
.user-dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.user-dropdown-item.logout-item:hover {
  background: rgba(255,61,61,0.08);
  color: #ff6b6b;
}
.user-dropdown-item.logout-item:hover .dropdown-item-icon { color: #ff6b6b; }

.dropdown-item-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  flex: 0 0 28px;
  transition: color .18s;
}
.user-dropdown-item:hover .dropdown-item-icon {
  background: rgba(168,255,0,0.08);
  color: var(--accent);
}

html.modal-open, body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

/* ===================== AUTH EXPERIENCE — SOLID DEDICATED THEME ===================== */
.auth-overlay {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; flex-direction: column;
  background: #080808;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
  box-sizing: border-box;
  animation: authOverlayFadeIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-overlay.closing {
  animation: authOverlayFadeOut 0.2s ease forwards;
  pointer-events: none;
}

@keyframes authOverlayFadeIn {
  from { opacity: 0; transform: scale(0.99); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes authOverlayFadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.98); }
}

/* Background Noise & Ambient Glows */
.auth-bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.035;
}

.auth-bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
}

.auth-blob {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(140px);
}
.auth-blob-1 {
  width: 700px; height: 700px; top: -180px; right: -120px;
  background: var(--accent); opacity: 0.055;
}
.auth-blob-2 {
  width: 600px; height: 600px; top: 35%; left: -200px;
  background: #00ff88; opacity: 0.035;
}
.auth-blob-3 {
  width: 500px; height: 500px; bottom: -150px; right: 25%;
  background: #00d2ff; opacity: 0.025;
}

/* ---------- AUTH TOP HEADER (Curved Pill "Patti") ---------- */
.auth-site-header {
  position: sticky; top: 12px; z-index: 100;
  padding: 0 16px;
  width: 100%;
}
.auth-nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 12px 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.auth-brand {
  display: inline-flex; align-items: center; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.auth-brand:hover { transform: translateY(-1px); }
.auth-brand img {
  height: 38px; width: auto; object-fit: contain;
  filter: brightness(1.2);
  display: block;
}

/* Back to Home Button */
.auth-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-back-btn svg {
  transition: transform 0.2s ease;
  color: var(--text-soft);
}
.auth-back-btn:hover {
  background: rgba(168, 255, 0, 0.12);
  border-color: rgba(168, 255, 0, 0.35);
  color: var(--text);
  transform: translateX(-2px);
  box-shadow: 0 0 20px rgba(168, 255, 0, 0.15);
}
.auth-back-btn:hover svg {
  color: var(--accent);
  transform: translateX(-2px);
}

/* ---------- MAIN AUTH WRAPPER ---------- */
.auth-main {
  flex: 1;
  min-height: calc(100vh - 84px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px 16px 40px;
  position: relative; z-index: 10;
}
.auth-container {
  width: min(1040px, 100%);
  margin: 0 auto;
}
.auth-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

/* ---------- LEFT COLUMN (Branding) ---------- */
.auth-left-col {
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  animation: authFadeUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes authFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.auth-hero-title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.auth-hero-title .serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.auth-hero-title .hl {
  background: linear-gradient(135deg, var(--accent) 0%, #c4ff4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-hero-desc {
  font-size: 15px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
}

.auth-mini-tags {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.auth-tag-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
  transition: all 0.2s ease;
}
.auth-tag-pill:hover {
  border-color: rgba(168, 255, 0, 0.25);
  background: rgba(168, 255, 0, 0.04);
  color: var(--text);
  transform: translateX(3px);
}
.auth-tag-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(168, 255, 0, 0.12);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ---------- RIGHT COLUMN (Clean Auth Card) ---------- */
.auth-right-col {
  display: flex; justify-content: center;
  width: 100%;
}

.auth-card {
  width: 100%; max-width: 420px;
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.94) 0%, rgba(12, 12, 12, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 32px 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(168, 255, 0, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  animation: authCardPop 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes authCardPop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-card-glow {
  position: absolute; top: -90px; right: -70px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 255, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Tab Switcher */
.auth-tabs-pill {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.auth-tab-btn {
  flex: 1; padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px; font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none; background: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; align-items: center; justify-content: center;
}
.auth-tab-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}
.auth-tab-btn.active {
  background: var(--accent);
  color: #080808;
  box-shadow: 0 0 20px rgba(168, 255, 0, 0.28);
}

/* Panel Heading */
.auth-panel { position: relative; z-index: 2; }
.auth-heading {
  font-size: 23px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--text);
  line-height: 1.15; margin-bottom: 4px;
}
.auth-subtext {
  font-size: 13px; color: rgba(255, 255, 255, 0.38);
  line-height: 1.45; margin-bottom: 20px;
}

/* Form Fields */
.auth-form {
  display: flex; flex-direction: column; gap: 14px;
}
.auth-field {
  display: flex; flex-direction: column; gap: 6px;
}
.auth-field label {
  font-size: 11px; font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.auth-field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}
.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.auth-field input:focus {
  border-color: rgba(168, 255, 0, 0.45);
  background: rgba(168, 255, 0, 0.025);
  box-shadow: 0 0 0 3px rgba(168, 255, 0, 0.08);
}
.auth-field input.error {
  border-color: rgba(255, 80, 80, 0.5);
  background: rgba(255, 80, 80, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08);
}

.password-wrap {
  position: relative;
  display: flex; align-items: center;
}
.password-wrap input {
  padding-right: 44px;
}
.toggle-password {
  position: absolute; right: 12px;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 6px;
  border: none; background: none;
  transition: color 0.2s ease;
  z-index: 2;
}
.toggle-password:hover {
  color: var(--accent);
}

/* Error message */
.auth-error {
  font-size: 12.5px; color: #ff7070; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  min-height: 0;
}
.auth-error:not(:empty)::before { content: '⚠ '; }

/* Submit Button */
.auth-submit-btn {
  width: 100%; min-height: 48px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-full);
  background: var(--accent); color: #080808;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px; font-weight: 800;
  cursor: pointer; border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 28px rgba(168, 255, 0, 0.22);
  margin-top: 4px;
}
.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(168, 255, 0, 0.38);
}
.auth-submit-btn:active { transform: translateY(0); }
.auth-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Loader Spinner */
.btn-loader {
  width: 17px; height: 17px;
  border: 2.5px solid rgba(8, 8, 8, 0.25);
  border-top-color: #080808;
  border-radius: 50%;
  animation: spinLoader 0.7s linear infinite;
}
@keyframes spinLoader { to { transform: rotate(360deg); } }

/* Switch link */
.auth-switch {
  text-align: center;
  font-size: 12.5px; color: rgba(255, 255, 255, 0.3);
  margin-top: 18px;
}
.auth-switch button {
  color: var(--accent); font-weight: 700; font-size: 12.5px;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; transition: opacity 0.2s;
  background: none; border: none; padding: 0;
}
.auth-switch button:hover { opacity: 0.75; }

/* ===================== TOAST NOTIFICATION ===================== */
.auth-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  z-index: 9999;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  font-size: 14px; font-weight: 600; color: var(--text);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.auth-toast.success { border-color: rgba(168, 255, 0, 0.3); color: var(--accent); }
.auth-toast.error   { border-color: rgba(255, 80, 80, 0.3); color: #ff7070; }

/* ===================== AUTH RESPONSIVE ===================== */
@media (max-width: 850px) {
  .auth-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
  .auth-left-col {
    display: none;
  }
  .auth-main {
    padding: 16px 16px 36px;
  }
}

@media (max-width: 480px) {
  .auth-site-header { padding: 0 10px; top: 8px; }
  .auth-nav-wrap { padding: 6px 12px 6px 14px; }
  .auth-brand img { height: 32px; }
  .auth-back-btn { padding: 7px 14px; font-size: 12px; gap: 6px; }
  .auth-card { padding: 26px 20px 22px; border-radius: var(--radius-lg); }
  .auth-heading { font-size: 20px; }
}

/* ==========================================================================
   COMPACT & CLEAN CHECKOUT MODAL
   ========================================================================== */
.checkout-overlay {
  z-index: 10000;
}

.checkout-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 24px;
  overflow: visible;
  box-sizing: border-box;
}

.checkout-container-compact {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.checkout-compact-card {
  width: 100%;
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.96) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(168, 255, 0, 0.16);
  border-radius: var(--radius-xl);
  padding: 24px 26px 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75), 0 0 35px rgba(168, 255, 0, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  animation: authCardPop 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.checkout-compact-header {
  text-align: center;
  margin-bottom: 18px;
}

.checkout-compact-title {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3px;
}

.checkout-compact-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.checkout-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 440px) {
  .checkout-inputs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Compact Phone Input with Editable Country Code */
.compact-phone {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s ease;
}

.country-code-input {
  width: 58px !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: none !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 6px !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: text;
}

.compact-phone input[type="tel"] {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
}

.compact-phone:focus-within {
  border-color: rgba(168, 255, 0, 0.45);
  background: rgba(168, 255, 0, 0.025);
  box-shadow: 0 0 0 3px rgba(168, 255, 0, 0.08);
}

.compact-phone.error {
  border-color: rgba(255, 80, 80, 0.5);
  background: rgba(255, 80, 80, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08);
}

/* Compact Price Summary */
.checkout-compact-price {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 4px 0 2px;
}

.price-row-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.discount-green {
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

.compact-price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 2px 0;
}

.total-clean {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  align-items: baseline;
}

.final-price-tag {
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* Minimalist Razorpay Footer */
.checkout-razorpay-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.checkout-razorpay-footer svg {
  color: var(--accent);
}

.checkout-razorpay-footer strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

/* ==========================================================================
   DYNAMIC ENROLLED / PURCHASED CTA BUTTON STYLES
   ========================================================================== */
.course-cta-btn.is-enrolled {
  background: linear-gradient(135deg, #00e676 0%, #00b0ff 100%) !important;
  color: #080808 !important;
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.35) !important;
  border-color: transparent !important;
}

.course-cta-btn.is-enrolled:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 230, 118, 0.5) !important;
}

.nav-cta.is-enrolled {
  background: rgba(0, 230, 118, 0.15) !important;
  border: 1px solid rgba(0, 230, 118, 0.4) !important;
  color: #00e676 !important;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

.enrolled-pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 10px #00e676;
  animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* ==========================================================================
   MY COURSE DASHBOARD PAGE STYLES
   ========================================================================== */
.course-page-body {
  background-color: var(--bg);
  min-height: 100vh;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.course-dashboard-main {
  flex: 1;
  padding: 40px 0 70px;
}

.dashboard-hero {
  margin-bottom: 40px;
}

.dashboard-greeting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.dashboard-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

.dashboard-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.dashboard-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: #00e676;
}

/* Featured Course Banner Card */
.course-main-card {
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 255, 0, 0.04);
  margin-bottom: 40px;
}

.course-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
}

@media (max-width: 900px) {
  .course-card-grid {
    grid-template-columns: 1fr;
  }
}

.course-video-preview-shell {
  background: #050505;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.video-shell-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(168, 255, 0, 0.08) 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.video-play-mockup-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #080808;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 0 35px rgba(168, 255, 0, 0.4);
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-mockup-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(168, 255, 0, 0.6);
}

.video-mockup-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.video-mockup-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.course-card-content {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.course-badge-premium {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #080808;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.course-card-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.course-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Progress bar inside card */
.course-progress-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.progress-pct {
  color: var(--accent);
}

.progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #00e676 100%);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.course-action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-start-course {
  flex: 1;
  min-width: 180px;
  min-height: 46px;
  background: var(--accent);
  color: #080808;
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(168, 255, 0, 0.25);
  text-decoration: none;
}

.btn-start-course:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(168, 255, 0, 0.4);
}

/* Modules Section */
.modules-section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 18px;
}

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

.module-item-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  transition: all 0.25s ease;
}

.module-item-card:hover {
  border-color: rgba(168, 255, 0, 0.2);
  background: rgba(168, 255, 0, 0.02);
  transform: translateY(-2px);
}

.module-number-pill {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.module-item-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.module-item-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 14px;
}

.module-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.module-status-tag.ready {
  color: var(--accent);
  background: rgba(168, 255, 0, 0.08);
}

/* Locked Course State (simple text, no card) */
.course-locked-view {
  text-align: center;
  max-width: 540px;
  margin: 90px auto;
  padding: 0 20px;
  animation: lockedFadeUp .4s cubic-bezier(.16, 1, .3, 1);
}

@keyframes lockedFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lock-big-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--accent);
}

.course-locked-view h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 12px;
}

.course-locked-view p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 430px;
  margin: 0 auto 30px;
}

.course-locked-view p strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .22s ease;
}

.btn-back-home:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #080808;
  transform: translateY(-2px);
}

.btn-unlock-course {
  background: var(--accent);
  color: #080808;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(168, 255, 0, 0.3);
  transition: all 0.2s ease;
}

.btn-unlock-course:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(168, 255, 0, 0.45);
}

@media (max-width: 520px) {
  .course-locked-view {
    margin: 60px auto;
    padding: 0 18px;
  }
  .course-locked-view h2 { font-size: 25px; }
  .lock-big-icon { width: 56px; height: 56px; border-radius: 18px; }
}




/* ===================== MY COURSE — CLEAN CHAPTER UI ===================== */
.mycourse-head { margin: 0 auto 24px; text-align: center; max-width: 700px; }
.mycourse-title {
  font-size: 30px; font-weight: 900; color: #FFFFFF;
  letter-spacing: -0.035em; line-height: 1.15;
}
.mycourse-sub { font-size: 13.5px; color: rgba(255,255,255,0.5); margin-top: 8px; }

.mc-chapters {
  display: block;
  max-width: 820px;
  margin: 0 auto;
}

/* Thin chapter strips (light premium look) */
.mc-chapter-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px 15px 24px;
  margin-bottom: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: all .22s ease;
}

.mc-chapter-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #A8FF00, #34D399);
  opacity: 0.85;
}

.mc-chapter-row:hover {
  background: linear-gradient(180deg, rgba(168,255,0,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(168,255,0,0.4);
  transform: translateX(3px);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,0.9);
}

.mcr-num {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: rgba(168,255,0,0.12); color: var(--accent);
  display: grid; place-items: center; font-weight: 900; font-size: 12.5px;
}

.mcr-name {
  flex: 1; min-width: 0;
  font-size: 14.5px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.015em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mcr-meta {
  font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 600; flex-shrink: 0;
}

.mcr-arrow { color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }

.mc-chapter-card {
  background: linear-gradient(180deg, rgba(30,30,30,0.96) 0%, rgba(12,12,12,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 20px;
  cursor: pointer;
  transition: all .22s ease;
}

.mc-chapter-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168,255,0,0.35);
  box-shadow: 0 22px 44px -18px rgba(0,0,0,0.85);
}

.mc-cc-num {
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(168,255,0,0.12); color: var(--accent);
  display: grid; place-items: center; font-weight: 900; font-size: 13px;
  margin-bottom: 14px;
}

.mc-chapter-card h4 {
  font-size: 16px; font-weight: 800; color: #FFFFFF;
  margin-bottom: 8px; letter-spacing: -0.02em;
}

.mc-cc-meta { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 600; }

.mc-cc-open {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12.5px; font-weight: 800; color: var(--accent);
}

.mc-empty {
  text-align: center; padding: 50px 20px; font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,0.45); line-height: 1.7;
  border: 1px dashed rgba(255,255,255,0.12); border-radius: 18px;
}

.mc-back {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: 99px; margin-bottom: 22px;
  transition: all .2s ease;
}

.mc-back:hover { color: #FFFFFF; background: rgba(255,255,255,0.08); }

.mc-detail-title {
  font-size: 24px; font-weight: 900; color: #FFFFFF;
  letter-spacing: -0.03em; margin-bottom: 22px;
}

.mc-section-title {
  font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}

.mc-videos { display: flex; flex-direction: column; gap: 22px; }

.mc-video-card {
  background: linear-gradient(180deg, rgba(30,30,30,0.96) 0%, rgba(12,12,12,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; overflow: hidden;
}

.mc-v-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000000; }
.mc-v-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.mc-v-thumb {
  position: relative; width: 100%; height: 100%;
  background: #0F172A; cursor: pointer;
  display: grid; place-items: center; overflow: hidden;
}

.mc-v-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.72;
}

.mc-v-play {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: #080808;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  transition: transform .22s ease;
}

.mc-v-thumb:hover .mc-v-play { transform: scale(1.09); }

.mc-v-body { padding: 16px 18px 18px; }
.mc-v-body h4 { font-size: 15px; font-weight: 800; color: #FFFFFF; margin-bottom: 6px; }
.mc-v-body p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.mc-assets { display: flex; flex-direction: column; gap: 10px; }

.mc-asset-row {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; padding: 12px 16px; transition: all .2s ease;
}

.mc-asset-row:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }

.mc-a-ico {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  background: rgba(168,255,0,0.12); color: var(--accent);
  display: grid; place-items: center;
}

.mc-a-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mc-a-title { font-size: 13.5px; font-weight: 700; color: #FFFFFF; }
.mc-a-sub { font-size: 11.5px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.mc-a-open { font-size: 11.5px; font-weight: 800; color: var(--accent); flex-shrink: 0; }

/* ===================== MY COURSE — HEADER & PLAYER ===================== */
.header-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.back-home-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
  text-decoration: none; border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 15px; border-radius: 99px; background: rgba(255,255,255,0.04);
  transition: all .2s ease; white-space: nowrap;
}

.back-home-link:hover { color: #FFFFFF; background: rgba(255,255,255,0.1); }

/* Compact top spacing on My Course page */
.course-page-body main > .container { padding-top: 8px; }
.mycourse-head { margin: 0 auto 26px; text-align: center; max-width: 720px; }

/* Creative course title */
.mc-badge {
  display: inline-block; margin-bottom: 12px;
  font-size: 10.5px; font-weight: 900; letter-spacing: 1.4px;
  color: var(--accent); background: rgba(168,255,0,0.1);
  border: 1px solid rgba(168,255,0,0.28);
  padding: 5px 14px; border-radius: 99px;
}

.mycourse-title .mc-t-main { color: #FFFFFF; }
.mycourse-title .mc-t-accent {
  background: linear-gradient(92deg, #A8FF00 0%, #34D399 60%, #22C55E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Main YouTube-style player */
.mc-main-wrap { max-width: 760px; margin-bottom: 4px; }

.mc-main-info { padding: 18px 2px 0; max-width: 760px; }
.mc-main-info h3 {
  font-size: 18px; font-weight: 800; color: #FFFFFF;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.mc-main-info p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Mini video cards (more videos) */
.mc-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px;
}

.mc-mini-card {
  display: flex; gap: 12px; padding: 10px; cursor: pointer;
  background: linear-gradient(180deg, rgba(30,30,30,0.96) 0%, rgba(12,12,12,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 14px;
  transition: all .2s ease;
}

.mc-mini-card:hover { border-color: rgba(168,255,0,0.35); transform: translateY(-2px); }
.mc-mini-card.active { border-color: rgba(168,255,0,0.5); }

.mc-mini-thumb {
  position: relative; width: 116px; aspect-ratio: 16 / 9; flex-shrink: 0;
  border-radius: 10px; overflow: hidden; background: #0F172A;
  display: grid; place-items: center;
}
.mc-mini-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.75;
}
.mc-mini-play {
  position: relative; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: #080808; display: grid; place-items: center;
}
.mc-mini-info { min-width: 0; flex: 1; }
.mc-mini-info h5 {
  font-size: 13px; font-weight: 800; color: #FFFFFF; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mc-mini-info p {
  font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 640px) {
  .back-home-link { font-size: 12px; padding: 7px 12px; }
  .mc-mini-thumb { width: 96px; }
}

@media (max-width: 640px) {
  .header-right-group { gap: 8px; }
  .mycourse-title { font-size: 25px; }
  .mcr-meta { display: none; }
}

/* number chip on light strip */
.mcr-num {
  background: rgba(168,255,0,0.16);
  color: var(--accent);
  border: 1px solid rgba(168,255,0,0.28);
}

/* ===================== CHAPTER DETAIL HEAD ===================== */
.mc-back { margin-bottom: 20px; }

.mc-detail-head { margin-bottom: 24px; }

.mc-chapter-tag {
  display: inline-block; margin-bottom: 10px;
  font-size: 10.5px; font-weight: 900; letter-spacing: 1.4px;
  color: var(--accent); background: rgba(168,255,0,0.1);
  border: 1px solid rgba(168,255,0,0.26);
  padding: 4px 12px; border-radius: 99px;
}

.mc-detail-title {
  font-size: 28px; font-weight: 900; color: #FFFFFF;
  letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 8px;
}

.mc-detail-meta {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45);
}

.mc-main-wrap { margin-top: 2px; }
.mc-main-info { padding-top: 16px; }

@media (max-width: 640px) {
  .mc-detail-title { font-size: 23px; }
  .mc-back { margin-bottom: 16px; }
}

/* Single video -> full width player */
.mc-main-wrap.full { max-width: 100%; }
.mc-main-wrap.full .mc-main-info { max-width: 100%; }
.mc-main-wrap.full .mc-v-play { width: 66px; height: 66px; }

/* cleaner detail head */
.mc-detail-head { margin-bottom: 20px; }
.mc-detail-title { margin-bottom: 0; }

.mc-main-wrap { margin-bottom: 0; }
.mc-videos, .mc-mini-grid { margin-top: 4px; }

/* ===================== VIDEO ROWS (thin strips) ===================== */
.mc-video-rows { display: block; }

.mc-video-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 18px;
  margin-bottom: 9px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 13px;
  transition: all .2s ease;
}

.mc-video-row:hover {
  background: linear-gradient(180deg, rgba(168,255,0,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(168,255,0,0.38);
  transform: translateX(3px);
}

.mc-video-row.active { border-color: rgba(168,255,0,0.55); }

.mvr-thumb {
  position: relative;
  width: 96px; aspect-ratio: 16 / 9; flex-shrink: 0;
  border-radius: 9px; overflow: hidden; background: #0F172A;
  display: grid; place-items: center;
}

.mvr-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
}

.mvr-play {
  position: relative;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: #080808;
  display: grid; place-items: center;
}

.mvr-title {
  flex: 1; min-width: 0;
  font-size: 13.5px; font-weight: 800; color: #FFFFFF;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mvr-arrow { color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }

/* Player always full width */
.mc-main-wrap { max-width: 100%; }
.mc-main-info { max-width: 100%; }

@media (max-width: 640px) {
  .mvr-thumb { width: 80px; }
  .mvr-title { font-size: 12.5px; }
}

/* Smaller chapter title, moved up */
.mc-detail-head { margin: 0 0 14px; }
.mc-detail-title {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
}
.mc-back { display: none; }
.mc-main-wrap { margin-top: 0; }

/* Mobile: menu toggle hatane ke baad bhi header CTA (Explore Course) dikhana */
@media (max-width: 768px) {
  .main-nav { display: flex; align-items: center; gap: 0; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .menu-toggle { display: none; }
}

/* Footer kabhi bhi scroll ke saath nahi chalega (hamesha page ke end par) */
.site-footer { position: static; z-index: 1; }

/* Footer left group: logo + copyright ek saath */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .footer-left { gap: 9px; }
  .footer-copy { font-size: 10.5px; }
}

/* Legal pages — admin se aaya hua (auto formatted) content */
.legal-content.dynamic { gap: 22px; }

.legal-content.dynamic > h2 {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 6px 0 -8px;
}

.legal-content.dynamic > p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.legal-content.dynamic > ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 20px;
  list-style: disc;
}

.legal-content.dynamic > ul li {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .legal-content.dynamic > h2 { font-size: 18px; }
  .legal-content.dynamic > p,
  .legal-content.dynamic > ul li { font-size: 13.5px; }
}
