/* ── Variables ────────────────────────────────────────────────────────────── */
#ljc-quiz {
  --dark:   #111518;
  --green:  #0f4528;
  --gray:   #E7EBEE;
  --bg:     #F3F5F7;
  --white:  #FBFBFC;
  --radius: 12px;
  font-family: 'Poppins', sans-serif;
  min-height: 70vh;
}

/* ── Full-width override (works with most themes) ─────────────────────────── */
.ljc-quiz-page .entry-content,
.ljc-quiz-page .page-content,
.ljc-quiz-page .site-main > article > .entry-content {
  max-width: 100% !important;
  padding-left: 0  !important;
  padding-right: 0 !important;
}

/* ── Layout containers ────────────────────────────────────────────────────── */
.ljc-welcome,
.ljc-question-wrap,
.ljc-results {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── Progress bar ─────────────────────────────────────────────────────────── */
.ljc-progress-bar {
  height: 3px;
  background: var(--gray);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}
.ljc-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ── Eyebrow / labels ─────────────────────────────────────────────────────── */
.ljc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
}
.ljc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ljc-back-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.15s;
}
.ljc-back-btn:hover { color: var(--dark); }

.ljc-step-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0;
  white-space: nowrap;
}

/* ── Step dots (back navigation) ─────────────────────────────────────────── */
.ljc-step-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  padding: 0 10px;
}
.ljc-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  line-height: 1;
  flex-shrink: 0;
}
.ljc-step-dot--done {
  background: #E7EBEE;
  color: #111518;
  cursor: pointer;
}
.ljc-step-dot--done:hover {
  background: #0f4528;
  color: #fff;
  transform: scale(1.1);
}
.ljc-step-dot--active {
  background: #111518;
  color: #fff;
  cursor: default;
}

/* ── Welcome screen ───────────────────────────────────────────────────────── */
.ljc-welcome-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.ljc-welcome-title {
  font-family: 'Dancing Script', cursive;
  font-size: 64px;
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.1;
}
.ljc-welcome-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  margin: 0 0 40px;
}

/* ── Primary button ───────────────────────────────────────────────────────── */
.ljc-btn-primary,
#ljc-quiz a.ljc-btn-primary {
  display: inline-block !important;
  background: var(--dark) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 40px !important;
  padding: 17px 52px !important;
  font-size: 15px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(17, 21, 24, 0.22) !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.ljc-btn-primary:hover,
#ljc-quiz a.ljc-btn-primary:hover {
  background: var(--green) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(15, 69, 40, 0.32) !important;
  text-decoration: none !important;
}
.ljc-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Question typography ──────────────────────────────────────────────────── */
.ljc-q-title {
  font-family: 'Dancing Script', cursive;
  font-size: 44px;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.15;
}
.ljc-q-sub {
  font-size: 15px;
  color: #888;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* ── Cards grid ───────────────────────────────────────────────────────────── */
.ljc-cards {
  display: grid;
  gap: 14px;
}
.ljc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ljc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ljc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.ljc-cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 800px) {
  .ljc-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .ljc-cols-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .ljc-cols-3,
  .ljc-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .ljc-cols-5 { grid-template-columns: repeat(3, 1fr); }
  .ljc-q-title       { font-size: 30px; }
  .ljc-welcome-title { font-size: 44px; }
}
@media (max-width: 420px) {
  .ljc-cols-2 { grid-template-columns: 1fr; }
  .ljc-cols-3,
  .ljc-cols-4,
  .ljc-cols-5 { grid-template-columns: repeat(2, 1fr); }
  .ljc-q-title       { font-size: 26px; }
  .ljc-welcome-title { font-size: 38px; }
}

/* ── Text-only cards (word picker, statement sentences) ───────────────────── */
.ljc-card--text {
  min-height: 0;
}
.ljc-card--text .ljc-card-label {
  padding: 16px 12px;
  font-size: 14px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ljc-card--text .ljc-card-sub {
  text-align: center;
  display: block;
}
/* Word grid: compact chip look */
.ljc-cards--text .ljc-card--text .ljc-card-label {
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Single card ──────────────────────────────────────────────────────────── */
.ljc-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
}
.ljc-card:hover {
  border-color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}
.ljc-card.ljc-selected {
  border-color: var(--green);
  background: #f0f7f3;
}

/* ── Card image ───────────────────────────────────────────────────────────── */
.ljc-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  overflow: hidden;
}
.ljc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.ljc-card:hover .ljc-card-img img {
  transform: scale(1.06);
}

/* ── Fallback emoji ───────────────────────────────────────────────────────── */
.ljc-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: var(--bg);
}

/* ── Hover tooltip overlay ────────────────────────────────────────────────── */
.ljc-card-tooltip {
  position: absolute;
  inset: 0;
  background: rgba(17, 21, 24, 0.86);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.ljc-card:hover .ljc-card-tooltip { opacity: 1; }

/* ── Card label ───────────────────────────────────────────────────────────── */
.ljc-card-label {
  display: block;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.35;
}

/* ── Card sub-label ───────────────────────────────────────────────────────── */
.ljc-card-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  margin-top: 3px;
  line-height: 1.3;
}
/* On small screens, hide sub-labels in dense grids to save space */
@media (max-width: 480px) {
  .ljc-cols-4 .ljc-card-sub,
  .ljc-cols-5 .ljc-card-sub { display: none; }
}

/* ── Text-only card image area ────────────────────────────────────────────── */
.ljc-card-fallback--static {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 40px;
  background: var(--bg);
}

/* ── Multi-select hint + next button ──────────────────────────────────────── */
.ljc-multi-hint {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.ljc-multi-next-wrap {
  margin-top: 28px;
  text-align: center;
}

/* ── Profile quote ────────────────────────────────────────────────────────── */
.ljc-profile-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: var(--green);
  line-height: 1.5;
  margin: 4px 0 32px;
  padding: 0;
  border: none;
}

/* ── Results hero ─────────────────────────────────────────────────────────── */
#ljc-quiz .ljc-res-hero {
  text-align: center !important;
  max-width: 680px;
  margin: 0 auto 40px;
}
#ljc-quiz .ljc-res-hero .ljc-eyebrow,
#ljc-quiz .ljc-res-hero .ljc-q-title,
#ljc-quiz .ljc-res-hero .ljc-hybrid-note,
#ljc-quiz .ljc-res-hero .ljc-profile-quote,
#ljc-quiz .ljc-res-hero .ljc-confidence {
  text-align: center !important;
}

/* ── Profile card (8-dimension table) ────────────────────────────────────── */
.ljc-profile-card {
  max-width: 680px;
  margin: 0 auto 32px;
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.ljc-profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ljc-profile-table tr {
  border-bottom: 1px solid var(--gray);
}
.ljc-profile-table tr:last-child {
  border-bottom: none;
}
.ljc-profile-table th {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  padding: 13px 20px;
  width: 36%;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg);
  white-space: nowrap;
}
.ljc-profile-table td {
  padding: 13px 20px;
  color: #444;
  font-size: 14px;
}

/* ── Profile spec list ────────────────────────────────────────────────────── */
.ljc-profile-spec {
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--gray);
}
#ljc-quiz .ljc-profile-spec h3 {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--green) !important;
  margin: 0 0 16px !important;
  font-family: 'Poppins', sans-serif !important;
}
#ljc-quiz .ljc-spec-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
#ljc-quiz .ljc-spec-list li {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
#ljc-quiz .ljc-spec-list li strong {
  color: var(--dark);
  font-weight: 600;
}

/* ── Hybrid note ──────────────────────────────────────────────────────────── */
.ljc-hybrid-note {
  font-size: 14px;
  color: #777;
  margin: 0 0 20px;
  line-height: 1.6;
}

/* ── Confidence note ──────────────────────────────────────────────────────── */
.ljc-confidence {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.55;
}
.ljc-confidence p { margin: 0; }
.ljc-confidence--mid { background: #fff8e8; border: 1px solid #f0d080; color: #7a5c00; }
.ljc-confidence--low { background: #fff0f0; border: 1px solid #f0a0a0; color: #900020; }

/* ── Results (legacy kept for back-compat) ────────────────────────────────── */
.ljc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 720px) {
  .ljc-results-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ljc-profile-table th,
  .ljc-profile-table td { padding: 10px 14px; font-size: 13px; }
  .ljc-profile-spec { padding: 20px; }
  .ljc-profile-quote { font-size: 18px; }
}

/* ── Booking section ──────────────────────────────────────────────────────── */
#ljc-quiz .ljc-booking-section {
  text-align: center !important;
  padding: 56px 0 40px;
  border-top: 1px solid var(--gray);
}
#ljc-quiz .ljc-booking-section h3 {
  font-family: 'Dancing Script', cursive !important;
  font-size: 40px !important;
  color: var(--dark) !important;
  margin: 0 0 14px !important;
  text-align: center !important;
}
#ljc-quiz .ljc-booking-section p {
  color: #777 !important;
  font-size: 15px !important;
  margin: 0 auto 32px !important;
  line-height: 1.6 !important;
  max-width: 420px !important;
  text-align: center !important;
}

/* ── Booking form ─────────────────────────────────────────────────────────── */
.ljc-booking-form {
  max-width: 460px;
  margin: 0 auto;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  text-align: left;
}
.ljc-booking-form h3 {
  font-size: 20px;
  color: var(--dark);
  margin: 0 0 24px;
  font-family: 'Poppins', sans-serif;
}
.ljc-form-field { margin-bottom: 16px; }
.ljc-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.ljc-form-field input {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
  background: var(--white);
}
.ljc-form-field input:focus { border-color: var(--dark); }

.ljc-form-error {
  color: #b00020;
  font-size: 13px;
  margin-bottom: 12px;
  min-height: 18px;
}
.ljc-booking-form .ljc-btn-primary {
  width: 100%;
  margin-top: 4px;
}

/* ── Success state ────────────────────────────────────────────────────────── */
.ljc-success {
  text-align: center;
  padding: 48px 24px;
  max-width: 460px;
  margin: 0 auto;
}
.ljc-success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
}
.ljc-success h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  color: var(--dark);
  margin: 0 0 10px;
}
.ljc-success p { color: #777; font-size: 15px; line-height: 1.6; }

/* ── Checklist (A-CHECKLIST / C-CHECKLIST) ────────────────────────────────── */
.ljc-checklist-note {
  font-size: 13px;
  color: #999;
  margin: 0 0 16px;
  font-style: italic;
}
.ljc-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.ljc-checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}
.ljc-checklist-item:hover {
  border-color: var(--dark);
}
.ljc-checklist-item.ljc-checked {
  border-color: var(--green);
  background: #f0f7f3;
}
.ljc-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gray);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s;
  font-size: 13px;
  color: transparent;
}
.ljc-checklist-item.ljc-checked .ljc-check-icon {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.ljc-checklist-item.ljc-checked .ljc-check-icon::after {
  content: '✓';
  line-height: 1;
}
.ljc-check-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ljc-check-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}
.ljc-check-content span {
  font-size: 12px;
  color: #999;
  line-height: 1.3;
}

/* ── Textarea (C-REFERENCE) ────────────────────────────────────────────────── */
.ljc-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  resize: vertical;
  outline: none;
  transition: border-color 0.18s;
  margin-bottom: 8px;
  min-height: 110px;
}
.ljc-textarea:focus {
  border-color: var(--dark);
}
.ljc-textarea::placeholder {
  color: #bbb;
}

/* ── Floating button wrapper (all pages) ──────────────────────────────────── */
#ljc-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 99999;
}

/* ── Speech bubble ────────────────────────────────────────────────────────── */
#ljc-float-bubble {
  background: #fff;
  color: #111518;
  border-radius: 20px;
  padding: 11px 12px 11px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  box-shadow: 0 4px 22px rgba(0,0,0,0.16);
  max-width: 210px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  animation: ljcBubbleIn 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
  transform-origin: bottom right;
}
/* Triangle pointing down toward the button */
#ljc-float-bubble::after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 24px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 3px solid transparent;
  border-top: 9px solid #fff;
}
#ljc-float-bubble.ljc-bubble-hidden {
  display: none;
}
@keyframes ljcBubbleIn {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}

/* Close button inside bubble */
#ljc-bubble-close {
  background: none;
  border: none;
  color: #bbb;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  flex-shrink: 0;
  font-family: sans-serif;
  transition: color 0.15s;
}
#ljc-bubble-close:hover { color: #555; }

/* ── Ring recommendations ─────────────────────────────────────────────────── */
.ljc-ring-section {
  margin: 28px 0 0;
}
.ljc-ring-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--dark);
}
.ljc-ring-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ljc-ring-card {
  flex: 1 1 160px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.ljc-ring-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.ljc-ring-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}
.ljc-ring-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ljc-ring-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.ljc-ring-name {
  padding: 10px 12px 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.ljc-ring-cta {
  padding: 4px 12px 12px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

/* ── Floating button ──────────────────────────────────────────────────────── */
#ljc-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111518;
  border: 2px solid #0f4528;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}
#ljc-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.36);
}

@media (max-width: 480px) {
  #ljc-float-wrap { bottom: 20px; right: 20px; }
  #ljc-float-btn  { width: 52px; height: 52px; font-size: 22px; }
  #ljc-float-bubble { font-size: 12px; max-width: 188px; }
}

/* ── Reference image upload ───────────────────────────────────────────────── */
.ljc-upload-section {
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 32px 28px;
  background: #F9FAF8;
  border: 1px solid #E7EBEE;
  border-radius: 16px;
  text-align: center;
}
.ljc-upload-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111518;
  margin: 0 0 8px;
}
.ljc-upload-text {
  color: #777;
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.5;
}
.ljc-upload-label {
  display: block;
  cursor: pointer;
}
.ljc-upload-area {
  border: 2px dashed #D0D5DA;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ljc-upload-area:hover {
  border-color: #0f4528;
  background: #F0F5F2;
}
.ljc-upload-icon { font-size: 32px; line-height: 1; }
.ljc-upload-prompt {
  font-size: 14px;
  color: #555;
  font-family: 'Poppins', sans-serif;
}
.ljc-upload-status {
  margin-top: 12px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  min-height: 18px;
}

@media (max-width: 600px) {
  .ljc-upload-section { padding: 24px 16px; }
  .ljc-step-dots { gap: 4px; padding: 0 6px; }
  .ljc-step-dot  { width: 20px; height: 20px; font-size: 9px; }
}
