/* ═══════════════════════════════════════════════════
   Healthcare Career Quiz — Stylesheet v1.0.0
   All classes prefixed with hcq- to avoid conflicts
   with WordPress themes and other plugins.
═══════════════════════════════════════════════════ */

#hcq-root {
  --hcq-navy:        #0a2540;
  --hcq-blue:        #1a6faf;
  --hcq-blue-mid:    #2589d0;
  --hcq-blue-light:  #e8f4fd;
  --hcq-blue-pale:   #f0f8ff;
  --hcq-accent:      #0abf8b;
  --hcq-accent-light:#e6faf5;
  --hcq-gray-50:     #f8fafc;
  --hcq-gray-100:    #f1f5f9;
  --hcq-gray-200:    #e2e8f0;
  --hcq-gray-400:    #94a3b8;
  --hcq-gray-600:    #475569;
  --hcq-gray-700:    #334155;
  --hcq-gray-800:    #1e293b;
  --hcq-warn:        #f59e0b;
  --hcq-shadow:      0 4px 24px rgba(10,37,64,0.10);
  --hcq-shadow-lg:   0 12px 48px rgba(10,37,64,0.16);
  --hcq-radius:      16px;
  --hcq-radius-sm:   10px;
  font-family: 'DM Sans', sans-serif;
  color: var(--hcq-gray-800);
  box-sizing: border-box;
}

#hcq-root *, #hcq-root *::before, #hcq-root *::after {
  box-sizing: inherit;
}

/* ── LANDING ── */
#hcq-landing {
  min-height: 80vh;
  background: linear-gradient(135deg, #0a2540 0%, #0f3460 55%, #1a6faf 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--hcq-radius);
}
#hcq-landing::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,137,208,0.18) 0%, transparent 70%);
  top: -180px; right: -180px;
  pointer-events: none;
}
#hcq-landing::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,191,139,0.10) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  pointer-events: none;
}

.hcq-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.hcq-dot {
  width: 8px; height: 8px;
  background: var(--hcq-accent);
  border-radius: 50%;
  display: inline-block;
}

.hcq-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: white;
  line-height: 1.12;
  max-width: 740px;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.hcq-hero-title span { color: #5dd4f0; }

.hcq-hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 0 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.hcq-btn-primary {
  background: var(--hcq-accent);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 17px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(10,191,139,0.35);
  position: relative;
  z-index: 1;
}
.hcq-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10,191,139,0.45);
  background: #09d49b;
}

.hcq-steps-row {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hcq-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 130px;
}
.hcq-step-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hcq-step-label { font-size: 12px; color: rgba(255,255,255,0.65); text-align: center; line-height: 1.5; }

/* ── QUIZ HEADER ── */
#hcq-quiz-app { background: var(--hcq-gray-50); min-height: 80vh; border-radius: var(--hcq-radius); overflow: hidden; }

.hcq-quiz-header {
  background: white;
  border-bottom: 1px solid var(--hcq-gray-200);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
}
.hcq-quiz-logo { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--hcq-navy); font-weight: 700; }
.hcq-quiz-logo span { color: var(--hcq-blue); }

.hcq-progress-area { flex: 1; max-width: 480px; margin: 0 28px; }
.hcq-progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--hcq-gray-400); margin-bottom: 6px; font-weight: 500; }
.hcq-progress-bar { height: 5px; background: var(--hcq-gray-200); border-radius: 100px; overflow: hidden; }
.hcq-progress-fill { height: 100%; background: linear-gradient(90deg, var(--hcq-blue) 0%, var(--hcq-accent) 100%); border-radius: 100px; transition: width 0.4s ease; }

.hcq-section-badge { background: var(--hcq-blue-light); color: var(--hcq-blue); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; white-space: nowrap; }

/* ── QUESTION SCREEN ── */
.hcq-question-screen { max-width: 700px; margin: 0 auto; padding: 44px 24px 72px; }
.hcq-section-intro { text-align: center; padding: 60px 24px; max-width: 580px; margin: 0 auto; }
.hcq-section-num { display: inline-block; background: var(--hcq-blue); color: white; border-radius: 100px; padding: 5px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.hcq-section-intro h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--hcq-navy); margin: 0 0 14px; line-height: 1.3; }
.hcq-section-intro p { color: var(--hcq-gray-600); font-size: 15px; line-height: 1.7; margin: 0 0 28px; }

.hcq-q-counter { font-size: 12px; color: var(--hcq-gray-400); margin-bottom: 10px; font-weight: 500; }
.hcq-q-text { font-family: 'Playfair Display', serif; font-size: clamp(19px, 2.5vw, 24px); color: var(--hcq-navy); line-height: 1.4; margin-bottom: 32px; font-weight: 600; }
.hcq-q-text .hcq-wyl { color: var(--hcq-blue-mid); font-style: italic; }

.hcq-options-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 26px; }
.hcq-opt-btn {
  background: white; border: 2px solid var(--hcq-gray-200); border-radius: var(--hcq-radius-sm);
  padding: 13px 7px; cursor: pointer; transition: all 0.2s ease;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  min-height: 86px; justify-content: center;
}
.hcq-opt-emoji { font-size: 20px; }
.hcq-opt-label { font-size: 11px; color: var(--hcq-gray-600); font-weight: 500; text-align: center; line-height: 1.3; }
.hcq-opt-btn:hover { border-color: var(--hcq-blue-mid); background: var(--hcq-blue-pale); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(26,111,175,0.12); }
.hcq-opt-btn[data-val="1"].hcq-selected { border-color: #dc2626; background: #fef2f2; }
.hcq-opt-btn[data-val="2"].hcq-selected { border-color: #ea580c; background: #fff7ed; }
.hcq-opt-btn[data-val="3"].hcq-selected { border-color: var(--hcq-warn); background: #fffbeb; }
.hcq-opt-btn[data-val="4"].hcq-selected { border-color: #16a34a; background: #f0fdf4; }
.hcq-opt-btn[data-val="5"].hcq-selected { border-color: var(--hcq-accent); background: var(--hcq-accent-light); }
.hcq-opt-btn.hcq-selected .hcq-opt-label { font-weight: 600; }

.hcq-q-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.hcq-btn-next { background: var(--hcq-blue); color: white; border: none; border-radius: 100px; padding: 13px 34px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.hcq-btn-next:hover { background: var(--hcq-navy); transform: translateY(-1px); }
.hcq-btn-next:disabled { background: var(--hcq-gray-200); color: var(--hcq-gray-400); cursor: not-allowed; transform: none; }
.hcq-btn-skip { background: none; border: none; color: var(--hcq-gray-400); font-family: 'DM Sans', sans-serif; font-size: 13px; cursor: pointer; padding: 7px; text-decoration: underline; }
.hcq-btn-skip:hover { color: var(--hcq-gray-600); }
.hcq-btn-back { background: none; border: 1px solid var(--hcq-gray-200); color: var(--hcq-gray-600); border-radius: 100px; padding: 11px 22px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.hcq-btn-back:hover { border-color: var(--hcq-blue); color: var(--hcq-blue); }

/* ── RESULTS ── */
#hcq-results { background: var(--hcq-gray-50); border-radius: var(--hcq-radius); overflow: hidden; }

.hcq-results-hero {
  background: linear-gradient(135deg, var(--hcq-navy) 0%, #0f3460 60%, #1a6faf 100%);
  padding: 72px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hcq-results-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(90,212,240,0.1) 0%, transparent 60%); }

.hcq-congrats-badge { display: inline-block; background: rgba(10,191,139,0.2); border: 1px solid rgba(10,191,139,0.4); border-radius: 100px; padding: 7px 22px; color: #5de8c5; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; position: relative; z-index: 1; }
.hcq-archetype-icon { font-size: 64px; margin-bottom: 16px; display: block; position: relative; z-index: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2)); }
.hcq-results-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4.5vw, 50px); color: white; margin: 0 0 18px; line-height: 1.15; position: relative; z-index: 1; }
.hcq-results-hero h1 span { color: #5dd4f0; }
.hcq-archetype-desc { font-size: clamp(14px, 1.8vw, 17px); color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 36px; line-height: 1.7; font-weight: 300; position: relative; z-index: 1; }
.hcq-traits-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.hcq-trait-pill { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 7px 16px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.hcq-trait-pill::before { content: '✓ '; color: var(--hcq-accent); }

.hcq-results-body { max-width: 880px; margin: 0 auto; padding: 56px 24px; }
.hcq-results-section { margin-bottom: 60px; }
.hcq-results-section-header { margin-bottom: 28px; }
.hcq-section-label { display: inline-flex; align-items: center; gap: 7px; background: var(--hcq-blue-light); color: var(--hcq-blue); border-radius: 100px; padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 10px; }
.hcq-section-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--hcq-navy); margin: 0 0 7px; }
.hcq-section-sub { color: var(--hcq-gray-600); font-size: 14px; line-height: 1.6; max-width: 620px; margin: 0; }

/* Hub cards */
.hcq-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.hcq-hub-card {
  background: white; border: 1px solid var(--hcq-gray-200); border-radius: var(--hcq-radius);
  padding: 26px; box-shadow: var(--hcq-shadow); transition: all 0.25s ease;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.hcq-hub-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--hcq-blue), var(--hcq-accent)); }
.hcq-hub-card:hover { box-shadow: var(--hcq-shadow-lg); transform: translateY(-4px); border-color: var(--hcq-blue-mid); }
.hcq-hub-card.hcq-primary::before { height: 5px; }
.hcq-hub-primary-badge { position: absolute; top: 18px; right: 18px; background: var(--hcq-accent); color: white; border-radius: 100px; padding: 3px 11px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.hcq-hub-icon { font-size: 38px; margin-bottom: 14px; }
.hcq-hub-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--hcq-navy); margin: 0 0 8px; font-weight: 700; }
.hcq-hub-desc { font-size: 13px; color: var(--hcq-gray-600); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.hcq-hub-meta { font-size: 12px; color: var(--hcq-gray-400); font-weight: 500; margin-bottom: 16px; }
.hcq-hub-meta strong { color: var(--hcq-navy); }
.hcq-hub-cta { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--hcq-blue-light); color: var(--hcq-blue); border: none; border-radius: 100px; padding: 11px 22px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; width: 100%; }
.hcq-hub-cta:hover { background: var(--hcq-blue); color: white; }
.hcq-hub-card.hcq-primary .hcq-hub-cta { background: var(--hcq-blue); color: white; }
.hcq-hub-card.hcq-primary .hcq-hub-cta:hover { background: var(--hcq-navy); }

/* Career intro banner */
.hcq-careers-banner { background: var(--hcq-blue-pale); border: 1px solid var(--hcq-blue-light); border-radius: var(--hcq-radius-sm); padding: 14px 18px; font-size: 13px; color: var(--hcq-blue); margin-bottom: 24px; display: flex; align-items: center; gap: 9px; line-height: 1.5; }

/* Career cards */
.hcq-career-cards { display: flex; flex-direction: column; gap: 18px; }
.hcq-career-card { background: white; border-radius: var(--hcq-radius); border: 1px solid var(--hcq-gray-200); overflow: hidden; box-shadow: var(--hcq-shadow); transition: box-shadow 0.2s, transform 0.2s; }
.hcq-career-card:hover { box-shadow: var(--hcq-shadow-lg); transform: translateY(-2px); }
.hcq-career-card-header { padding: 22px 26px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--hcq-gray-100); }
.hcq-career-rank { background: var(--hcq-blue-light); color: var(--hcq-blue); border-radius: 8px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.hcq-career-rank.hcq-rank-1 { background: #fef3c7; color: #92400e; }
.hcq-career-title-area { flex: 1; }
.hcq-career-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--hcq-navy); margin: 0 0 6px; }
.hcq-career-hub-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--hcq-blue-light); color: var(--hcq-blue); border-radius: 100px; padding: 3px 11px; font-size: 12px; font-weight: 600; }
.hcq-match-pct { text-align: right; flex-shrink: 0; }
.hcq-match-num { font-size: 30px; font-weight: 700; color: var(--hcq-accent); line-height: 1; }
.hcq-match-label { font-size: 11px; color: var(--hcq-gray-400); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.hcq-career-card-body { padding: 18px 26px; }
.hcq-career-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin-bottom: 16px; }
.hcq-meta-label { font-size: 10px; color: var(--hcq-gray-400); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 3px; }
.hcq-meta-val { font-size: 13px; color: var(--hcq-navy); font-weight: 600; }
.hcq-loves-challenges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.hcq-love-box { background: var(--hcq-accent-light); border-radius: var(--hcq-radius-sm); padding: 13px 15px; }
.hcq-challenge-box { background: #fffbeb; border-radius: var(--hcq-radius-sm); padding: 13px 15px; }
.hcq-box-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 7px; }
.hcq-love-box .hcq-box-title { color: var(--hcq-accent); }
.hcq-challenge-box .hcq-box-title { color: var(--hcq-warn); }
.hcq-box-list { list-style: none; padding: 0; margin: 0; }
.hcq-box-list li { font-size: 12px; color: var(--hcq-gray-700); line-height: 1.6; padding: 1px 0; }
.hcq-box-list li::before { content: '• '; }

/* Trait bars */
.hcq-trait-bars { display: flex; flex-direction: column; gap: 22px; }
.hcq-trait-bar-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.hcq-trait-bar-name { font-weight: 600; font-size: 14px; color: var(--hcq-navy); }
.hcq-trait-bar-score { font-size: 13px; color: var(--hcq-blue); font-weight: 700; }
.hcq-trait-bar-track { height: 10px; background: var(--hcq-gray-100); border-radius: 100px; overflow: hidden; }
.hcq-trait-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--hcq-blue) 0%, var(--hcq-accent) 100%); transition: width 1.2s ease; }
.hcq-trait-bar-desc { font-size: 12px; color: var(--hcq-gray-400); margin-top: 5px; }

/* Degree card */
.hcq-degree-card { background: white; border: 1px solid var(--hcq-gray-200); border-radius: var(--hcq-radius); padding: 32px; box-shadow: var(--hcq-shadow); position: relative; overflow: hidden; }
.hcq-degree-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--hcq-blue), var(--hcq-accent)); }
.hcq-degree-top { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.hcq-degree-icon { font-size: 48px; line-height: 1; }
.hcq-degree-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--hcq-navy); margin: 0 0 7px; }
.hcq-degree-desc { font-size: 14px; color: var(--hcq-gray-600); line-height: 1.65; margin: 0; }
.hcq-degree-meta-row { display: flex; gap: 24px; flex-wrap: wrap; margin: 18px 0; padding: 18px; background: var(--hcq-gray-50); border-radius: var(--hcq-radius-sm); }
.hcq-degree-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hcq-gray-600); }
.hcq-degree-meta-item strong { color: var(--hcq-navy); font-weight: 700; }
.hcq-degree-programs-title { font-size: 12px; font-weight: 700; color: var(--hcq-navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.hcq-degree-programs { display: flex; gap: 7px; flex-wrap: wrap; }
.hcq-prog-tag { background: var(--hcq-blue-light); color: var(--hcq-blue); border-radius: 7px; padding: 6px 14px; font-size: 13px; font-weight: 500; }

/* Email CTA */
.hcq-email-section { background: linear-gradient(135deg, var(--hcq-navy) 0%, #0f3460 100%); border-radius: var(--hcq-radius); padding: 50px 36px; text-align: center; position: relative; overflow: hidden; margin-bottom: 8px; }
.hcq-email-section::before { content: ''; position: absolute; top: -50%; right: -15%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(90,212,240,0.08) 0%, transparent 70%); }
.hcq-email-icon { font-size: 44px; margin-bottom: 14px; display: block; position: relative; z-index: 1; }
.hcq-email-section h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: white; margin: 0 0 10px; position: relative; z-index: 1; }
.hcq-email-section p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0 auto 28px; max-width: 480px; line-height: 1.65; font-weight: 300; position: relative; z-index: 1; }
.hcq-email-features { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; position: relative; z-index: 1; }
.hcq-email-feature { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,0.85); }
.hcq-email-feature::before { content: '✓ '; color: var(--hcq-accent); }
.hcq-email-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.hcq-email-input { flex: 1; min-width: 190px; padding: 14px 20px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.hcq-email-input::placeholder { color: rgba(255,255,255,0.4); }
.hcq-email-input:focus { border-color: var(--hcq-accent); }
.hcq-btn-email { background: var(--hcq-accent); color: white; border: none; border-radius: 100px; padding: 14px 26px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.hcq-btn-email:hover { background: #09d49b; transform: translateY(-1px); }
.hcq-email-privacy { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 12px; position: relative; z-index: 1; }
.hcq-email-success { color: var(--hcq-accent); font-size: 15px; font-weight: 600; display: none; padding: 14px; position: relative; z-index: 1; }
.hcq-btn-email-skip { display: block; margin: 0 auto; font-size: 12px; color: rgba(255,255,255,0.4); cursor: pointer; text-decoration: underline; background: none; border: none; font-family: 'DM Sans', sans-serif; transition: color 0.2s; position: relative; z-index: 1; }
.hcq-btn-email-skip:hover { color: rgba(255,255,255,0.7); }

/* Retake row */
.hcq-retake-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; padding: 40px 0 24px; }
.hcq-btn-retake { background: white; color: var(--hcq-navy); border: 2px solid var(--hcq-gray-200); border-radius: 100px; padding: 13px 28px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.hcq-btn-retake:hover { border-color: var(--hcq-blue); color: var(--hcq-blue); }
.hcq-btn-top { background: var(--hcq-blue); color: white; border: none; border-radius: 100px; padding: 13px 28px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.hcq-btn-top:hover { background: var(--hcq-navy); }

.hcq-results-divider { border: none; border-top: 1px solid var(--hcq-gray-200); margin: 0 0 56px; }

/* Animations */
@keyframes hcqFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hcq-animate-in { animation: hcqFadeUp 0.45s ease forwards; }

/* Responsive */
@media (max-width: 600px) {
  .hcq-options-grid { gap: 6px; }
  .hcq-opt-btn { padding: 10px 4px; min-height: 78px; }
  .hcq-opt-emoji { font-size: 17px; }
  .hcq-opt-label { font-size: 10px; }
  .hcq-loves-challenges { grid-template-columns: 1fr; }
  .hcq-career-card-header { flex-wrap: wrap; }
  .hcq-hub-grid { grid-template-columns: 1fr; }
  .hcq-quiz-header { padding: 0 14px; }
  .hcq-progress-area { margin: 0 10px; }
  .hcq-section-badge { display: none; }
  .hcq-email-section { padding: 36px 20px; }
  .hcq-degree-top { flex-direction: column; gap: 10px; }
  .hcq-steps-row { gap: 16px; }
}
