/* ================================================
   SPEAKER TRAINING PLATFORM — Design System
   Based on Pencil design: speaker-media.pen
   ================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Iconos SVG inline — reemplazan Font Awesome, heredan tamaño de
   font-size y color de currentColor igual que hacía la icon font. */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

:root {
  --accent-teal:       #00bcab;
  --accent-teal-dark:  #007d8c;
  --accent-teal-light: #7fcdcf;
  --accent-pink:       #df1449;
  --accent-pink-dark:  #a00c46;
  --accent-pink-light: #f23670;
  --bg-white:          #FCFAF8;
  --bg-light:          #F8F9FA;
  --text-primary:      #01232d;
  --text-secondary:    #6B7280;
  --text-muted:        #9CA3AF;
  --border-light:      #E5E7EB;
  --success-green:     #14A672;
  --success-green-dark:#0F8C5A;
  --success-light:     #DFFBEF;
  --warning-amber:     #F0980D;
  --red-record:        #E31C4D;
  --error-red:         #E8435F;
  --error-bg:          #FCF1F3;
  --error-border:      #F6C6CE;
  --shadow-card:       0 10px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-lg:    0 16px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: 'Encode Sans', 'Inter', sans-serif;
  background: linear-gradient(180deg, rgba(194, 24, 91, 0.5) 0%, rgba(232, 99, 106, 0.5) 45%, rgba(42, 191, 191, 0.5) 100%), url('../img/bgk-simulador.jpg');
  background-attachment: fixed;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* ================================================
   APP WRAPPER
   ================================================ */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 56px;
}

/* ================================================
   HEADER
   ================================================ */
.app-header {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
}

.header-icon-wrap {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 32px;
  width: auto;
  display: block;
}

.header-title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.header-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

/* ================================================
   STEP PROGRESS INDICATOR
   ================================================ */
.step-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.step-dots {
  display: flex;
  align-items: center;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(42, 191, 191, 0.25);
}

.step-dot.done {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: #fff;
}

.step-dot.done span { display: none; }
.step-dot.done::after { content: '✓'; font-size: 13px; font-weight: 700; }

.step-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease;
}

.step-line.done {
  background: var(--accent-teal);
}

.step-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ================================================
   INTERVIEW PROGRESS BAR (Step 3)
   ================================================ */
.interview-progress {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.interview-mini-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.timer-item { display: flex; align-items: center; gap: 6px; }
.timer-item strong { color: #fff; }

.progress-text-center {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.interview-progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.interview-progress-fill {
  height: 4px;
  background: var(--accent-teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ================================================
   MAIN CONTENT WRAPPER
   ================================================ */
.main-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
}

/* ================================================
   CARD BASE
   ================================================ */
.card {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.card-header { display: flex; flex-direction: column; gap: 6px; }

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.card-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ================================================
   STEP 1 — PROFILE FORM
   ================================================ */
.step1-card {
  width: 100%;
  max-width: 580px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== FORM ===== */
.form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: flex; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0 12px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(42, 191, 191, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-textarea {
  height: 64px;
  padding: 10px 12px;
  resize: none;
  line-height: 1.5;
}

.form-helper {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* Select wrapper */
.select-wrap { position: relative; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Social proof */
.social-proof {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-error-banner {
  font-size: 13px;
  color: var(--error-red);
  text-align: center;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  background: var(--accent-teal);
  color: #fff;
  border: none;
  height: 48px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42, 191, 191, 0.35);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-success {
  background: var(--success-green);
  color: #fff;
  border: none;
  height: 48px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-success:hover {
  background: var(--success-green-dark);
  transform: translateY(-1px);
}

/* ================================================
   STEP 2 — TOPIC SELECTION
   ================================================ */
.step2-card {
  width: 100%;
  max-width: 820px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step2-cols {
  display: flex;
  gap: 28px;
  width: 100%;
}

.step2-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 430px;
  flex-shrink: 0;
}

.step2-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* ===== RECOMMENDED CARD ===== */
.rec-card {
  display: block;
  padding: 16px;
  border-radius: 12px;
  background: #E1F5EE;
  border: 2px solid var(--accent-teal);
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s;
  user-select: none;
}

.rec-card:hover { box-shadow: 0 4px 12px rgba(42, 191, 191, 0.2); }

.rec-card.selected {
  background: #d4f3e8;
  box-shadow: 0 0 0 3px rgba(42, 191, 191, 0.2);
}

.rec-badge-pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 6px;
}

.rec-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  padding-right: 28px;
}

.rec-card-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rec-check-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  color: var(--accent-pink);
}

/* ===== TOPIC GRID ===== */
.topics-grid { display: flex; flex-direction: column; gap: 10px; }
.topics-row { display: flex; gap: 10px; }

.topic-card {
  display: block;
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  user-select: none;
  min-width: 0;
}

.topic-card:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 2px 8px rgba(42, 191, 191, 0.12);
}

.topic-card.selected {
  border-color: var(--accent-teal);
  background: var(--accent-teal-light);
}

.topic-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.topic-card-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* See more */
.see-more-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-teal);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}

.see-more-btn:hover { color: var(--accent-teal-dark); }

/* Selection status */
.selection-status {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.selection-status.loading  { color: var(--accent-teal); }
.selection-status.success  { font-size: 15px; font-weight: 600; color: var(--success-green); }
.selection-status.error    { color: var(--error-red); }
.selection-status.warning  { color: var(--warning-amber); }

/* ===== CAMERA PREVIEW (Step 2) ===== */
.cam-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.cam-preview-wrap {
  background: #1A1A2E;
  border-radius: 12px;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cam-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cam-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  position: absolute;
  inset: 0;
  justify-content: center;
}

.cam-placeholder .icon { width: 32px; height: 32px; }

.cam-live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--success-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cam-live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

.cam-tip {
  font-size: 12px;
  color: var(--text-secondary);
}

.cam-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--success-green);
}

/* Hidden radio utility */
.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;
}

/* ================================================
   STEP 3 — LIVE INTERVIEW
   ================================================ */
.interview-screen {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.interview-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Camera column */
.interview-cam-col {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cam-container {
  background: #1A1A2E;
  border-radius: 12px;
  height: 285px;
  position: relative;
  overflow: hidden;
}

.cam-container .cam-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Recording badge */
.rec-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red-record);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rec-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.cam-user-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Question column */
.interview-q-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.question-card {
  background: rgba(252, 250, 248, 0.95);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: stretch;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-height: 120px;
}

.question-accent-bar {
  width: 4px;
  background: var(--accent-teal);
  border-radius: 2px;
  flex-shrink: 0;
  min-height: 60px;
}

#questionText {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  align-self: center;
}

.q-tip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}

/* Navigation */
.interview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 4px;
}

.btn-prev {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, color 0.2s;
}

.btn-prev:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-prev:not(:disabled):hover { color: #fff; border-color: rgba(255, 255, 255, 0.6); }

.btn-next {
  background: var(--accent-teal);
  color: #fff;
  border: none;
  height: 44px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-next:hover {
  background: var(--accent-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 191, 191, 0.35);
}

/* ================================================
   RESULT SCREEN
   ================================================ */
.result-card {
  width: 100%;
  max-width: 640px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.result-rocket {
  font-size: 44px;
  line-height: 1;
  color: var(--accent-pink);
  position: relative;
  z-index: 1;
}

.result-rocket::before {
  content: '';
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 20, 73, 0.18), rgba(0, 188, 171, 0.12) 60%, transparent 75%);
}

.result-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: center;
}

.result-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-teal));
}

.result-expect-card {
  width: 100%;
  background: var(--accent-teal-light);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-expect-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.result-expect-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.warn-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.warn-icon {
  color: var(--warning-amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.upload-error-banner {
  width: 100%;
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.upload-error-icon {
  color: var(--error-red);
  font-size: 18px;
}

.upload-error-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.upload-error-banner .btn-primary {
  width: auto;
  padding: 0 20px;
  height: 40px;
}

.result-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
}

.result-practice { text-align: center; display: flex; flex-direction: column; gap: 6px; }

.result-practice-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ================================================
   LOADERS
   ================================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(2px);
}

.loader-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}

.loader-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.loader-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}

.loader-body {
  min-width: 0;
  flex: 1;
}

.upload-progress-track {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

.upload-progress-fill {
  height: 4px;
  background: var(--accent-teal);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.upload-progress-text {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top-color: var(--accent-teal);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  flex-shrink: 0;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

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

.screen { animation: fadeSlideIn 0.3s ease forwards; }

/* ================================================
   UTILITIES
   ================================================ */
.hidden { display: none !important; }

/* ================================================
   MOBILE — 768px and below
   ================================================ */
@media (max-width: 768px) {

  #app { padding: 0 12px 48px; }

  /* Header */
  .app-header { padding: 10px 16px; gap: 10px; }
  .header-logo { height: 24px; }
  .header-title { font-size: 14px; }
  .header-subtitle { display: none; }

  /* Step progress */
  .step-line { width: 48px; }
  .step-label { font-size: 11px; }

  /* Interview progress */
  .interview-mini-header { font-size: 11px; gap: 4px; }
  .timer-item { gap: 4px; }
  .progress-text-center { font-size: 12px; }

  /* Step 1 card */
  .step1-card { padding: 24px 20px; }
  .card-title { font-size: 20px; }
  .form-row { flex-direction: column; gap: 12px; }

  /* Step 2 */
  .step2-card { padding: 20px 16px; }
  .step2-cols { flex-direction: column-reverse; gap: 20px; }
  .step2-left { width: 100%; }

  /* On mobile: camera goes ABOVE topics (column-reverse shows right col first) */
  .step2-right { order: -1; }
  .cam-preview-wrap { height: 200px; }

  .topics-row { gap: 8px; }
  .topic-card { padding: 10px; }
  .topic-card-title { font-size: 12px; }
  .topic-card-subtitle { font-size: 10px; }

  /* Step 3 */
  .interview-content { flex-direction: column; gap: 14px; }
  .interview-cam-col { width: 100%; }
  .cam-container { height: 56vw; min-height: 200px; max-height: 260px; }
  #questionText { font-size: 15px; }
  .question-card { padding: 14px 16px; gap: 10px; }

  .btn-prev { font-size: 13px; padding: 0 14px; }
  .btn-next { font-size: 13px; padding: 0 16px; }

  /* Result */
  .result-card { padding: 28px 20px; }
  .result-title { font-size: 28px; }
}

/* ================================================
   MOBILE — 480px and below
   ================================================ */
@media (max-width: 480px) {
  .step2-cols { gap: 16px; }
  .topics-row { flex-direction: column; }
  .topic-card { width: 100%; }
  .interview-mini-header { flex-direction: column; gap: 4px; align-items: flex-start; }
  .progress-text-center { align-self: center; }
}
