/* ============================================
   RECRUITING SYSTEM HEALTH CHECK — STYLES
   Inner Circle Broker Coaching
   ============================================ */

:root {
  --orange: #ECA333;
  --orange-light: #f4bc5e;
  --orange-glow: rgba(236,163,51,0.15);
  --dark-blue: #0C4559;
  --dark-blue-light: #0e5a73;
  --dark-blue-glow: rgba(12,69,89,0.08);
  --tan: #FAF4EC;
  --cream: #FDF9F3;
  --white: #FFFFFF;
  --gray: #E7EDEF;
  --gray-light: #F2F4F5;
  --text: #1a1a1a;
  --text-light: #140C00;
  --muted: #555;
  --muted-light: #888;
  --green: #4CAF82;
  --red: #E05A5A;
  --score-orange: #E08A3C;
  --blue: #009FDA;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(12,69,89,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--tan);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(12,69,89,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(236,163,51,0.04) 0%, transparent 60%);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   LANDING FLOW — step-based dark pages
   ============================================ */

.landing-flow {
  position: relative;
}

/* ---- Landing Steps ---- */
.landing-step {
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  background: linear-gradient(165deg, var(--dark-blue) 0%, #072a36 40%, #051e27 100%);
  overflow: hidden;
}

.landing-step.active {
  display: block;
}

.landing-step.step-entering {
  animation: stepSlideIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.landing-step.step-exiting {
  display: block;
  animation: stepSlideOut 0.4s ease-in both;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Keep dark background during transitions */
.landing-flow {
  background: linear-gradient(165deg, var(--dark-blue) 0%, #072a36 40%, #051e27 100%);
  min-height: 100vh;
  transition: background 0.8s ease, opacity 0.8s ease;
}

/* Blue to white transition */
.landing-flow.transitioning {
  background: var(--tan) !important;
  transition: background 0.6s ease;
}

.landing-flow.transitioning .landing-step {
  animation: contentFadeUp 0.5s ease both;
}

@keyframes contentFadeUp {
  to { opacity: 0; transform: translateY(-30px); }
}

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

@keyframes stepSlideOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.landing-step-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hero area ---- */
.landing-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.header-logo {
  height: 28px;
  margin-bottom: 24px;
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  animation: heroFadeIn 0.8s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(236,163,51,0.15);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(236,163,51,0.25);
  animation: heroFadeIn 0.8s ease 0.1s both;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  animation: heroFadeIn 0.8s ease 0.2s both;
}

.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: heroFadeIn 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: heroFadeIn 0.8s ease 0.4s both;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ---- Testimonials ---- */
.landing-testimonials {
  padding: 32px 0 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: transform 0.3s, background 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
}

.testimonial-card-stars {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.testimonial-card-quote {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info { text-align: left; }

.testimonial-author-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author-role {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ---- Landing continue button ---- */
.landing-continue-wrap {
  text-align: center;
  padding: 36px 0 48px;
}

.btn-landing-continue {
  display: inline-block;
  background: var(--orange);
  border: none;
  color: #000;
  padding: 18px 56px;
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.btn-landing-continue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-landing-continue:hover::before { transform: translateX(100%); }
.btn-landing-continue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(236,163,51,0.4);
}

/* ---- Hero floating decorations ---- */
.hero-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-float-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,163,51,0.06) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-float-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,156,199,0.04) 0%, transparent 70%);
  bottom: 5%;
  left: -10%;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-float-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236,163,51,0.04) 0%, transparent 70%);
  top: 50%;
  left: 15%;
  animation: heroFloat 12s ease-in-out infinite 2s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

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

/* ============================================
   STEP 2: Full-Page Features Walkthrough
   ============================================ */

.features-step-inner {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 32px;
  padding-bottom: 32px;
}

.features-top {
  margin-bottom: 24px;
}

.features-logo {
  opacity: 0.7;
}

.features-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}

.features-label {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

.features-counter {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.features-counter span {
  color: var(--white);
  font-size: 18px;
}

/* ---- Full-page feature cards ---- */
.features-viewport {
  position: relative;
}

.feature-fullpage {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-fullpage.active {
  display: flex;
}

.fp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.fp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
}

.fp-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.fp-icon.feature-ai {
  background: linear-gradient(135deg, rgba(236,163,51,0.25), rgba(236,163,51,0.08));
  color: var(--orange);
  box-shadow: 0 8px 32px rgba(236,163,51,0.15);
}

.fp-icon.feature-plan {
  background: linear-gradient(135deg, rgba(236,163,51,0.25), rgba(236,163,51,0.08));
  color: var(--orange);
  box-shadow: 0 8px 32px rgba(236,163,51,0.15);
}

.fp-icon.feature-score {
  background: linear-gradient(135deg, rgba(74,156,199,0.25), rgba(74,156,199,0.08));
  color: #6bb5d6;
  box-shadow: 0 8px 32px rgba(74,156,199,0.15);
}

.fp-icon.feature-resources {
  background: linear-gradient(135deg, rgba(76,175,130,0.25), rgba(76,175,130,0.08));
  color: #5cc493;
  box-shadow: 0 8px 32px rgba(76,175,130,0.15);
}

.fp-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.fp-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 14px;
}

.fp-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

/* Feature preview boxes */
.fp-preview {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
}

.fp-preview-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.fp-preview-text {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.fp-preview-phases {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fp-phase {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding: 10px 14px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.02);
  border-radius: 0 8px 8px 0;
}

.fp-phase strong {
  color: var(--white);
}

.fp-preview-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.fp-preview-areas span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 999px;
  transition: all 0.2s;
}

.fp-preview-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fp-resource {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border-left: 3px solid var(--green);
  transition: background 0.2s;
}

.fp-resource:hover {
  background: rgba(255,255,255,0.06);
}

/* ---- Features navigation ---- */
.features-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 0;
  width: 100%;
}

.features-dots {
  display: flex;
  gap: 8px;
}

.fp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.fp-dot.active {
  background: var(--orange);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(236,163,51,0.3);
}

.btn-feature-next {
  background: var(--orange);
  border: none;
  color: #000;
  padding: 14px 36px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.btn-feature-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-feature-next:hover::before { transform: translateX(100%); }
.btn-feature-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,163,51,0.4);
}

/* ---- Responsive for features ---- */
@media (max-width: 520px) {
  .features-step-inner { padding-top: 24px; padding-bottom: 24px; }
  .fp-title { font-size: clamp(22px, 5vw, 30px); }
  .fp-desc { font-size: 14px; }
  .fp-preview { padding: 18px; }
  .fp-phase { font-size: 13px; }
}

/* ============================================
   SLIDE (scoring explanation)
   ============================================ */

.slide {
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  animation: slideFadeIn 0.5s cubic-bezier(0.16,1,0.3,1);
}

.slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  width: 100%;
  max-width: 720px;
  padding: 24px;
  margin: 0 auto;
}

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

/* ---- Layout ---- */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 80px;
  position: relative;
  z-index: 1;
}

.container-centered {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hidden { display: none !important; }

/* ---- Welcome Screen ---- */
.welcome-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.6s cubic-bezier(0.16,1,0.3,1);
}

.welcome-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}

.welcome-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ---- Score Legend ---- */
.score-legend {
  margin: 28px 0 28px;
}

.legend-bar {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--dark-blue);
  box-shadow: 0 2px 8px rgba(12,69,89,0.12);
}

.legend-bar-item {
  flex: 1;
  padding: 12px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: filter 0.2s;
}

.lb-5 { background: var(--dark-blue); }
.lb-4 { background: #4A9CC7; }
.lb-3 { background: var(--orange); }
.lb-2 { background: #999; }
.lb-1 { background: #333; }

.legend-labels {
  display: flex;
  margin-top: 12px;
  gap: 4px;
}

.legend-label {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  background: var(--white);
  position: relative;
  transition: all 0.2s;
}

.legend-label::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1.5px solid var(--gray);
  border-left: 1.5px solid var(--gray);
}

.legend-label-title {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 2px;
}

.ll-5 .legend-label-title { color: var(--dark-blue); }
.ll-4 .legend-label-title { color: #4A9CC7; }
.ll-3 .legend-label-title { color: var(--orange); }
.ll-2 .legend-label-title { color: #999; }
.ll-1 .legend-label-title { color: #333; }

.legend-label-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.3;
}

/* ---- Progress ---- */
.progress-bar-wrap {
  background: var(--gray);
  border-radius: 999px;
  height: 5px;
  margin-bottom: 36px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--dark-blue), var(--orange));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: -1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange-glow);
}

.progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-light);
  text-align: right;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- Score Tracker ---- */
.score-tracker {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.tracker-dot {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-light);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.tracker-dot.filled {
  border-color: var(--dark-blue);
  color: var(--white);
  background: var(--dark-blue);
  box-shadow: 0 2px 6px rgba(12,69,89,0.2);
}

.tracker-dot.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px var(--orange-glow);
  transform: scale(1.08);
}

/* ---- Question Card ---- */
.question-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.4s cubic-bezier(0.16,1,0.3,1);
}

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

.question-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.question-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 28px;
}

/* ---- Score Bar (clickable legend) ---- */
.score-bar-wrap {
  margin-bottom: 16px;
}

.score-bar {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--dark-blue);
  box-shadow: 0 2px 8px rgba(12,69,89,0.12);
}

.score-bar-item {
  flex: 1;
  padding: 13px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.score-bar-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  pointer-events: none;
  transition: all 0.2s;
}

.score-bar-item:first-child::after { border-radius: 999px 0 0 999px; }
.score-bar-item:last-child::after { border-radius: 0 999px 999px 0; }

.score-bar-item:hover { filter: brightness(1.15); }

.score-bar-item.selected {
  filter: brightness(1.2);
}

.score-bar-item.selected::after {
  border-color: rgba(255,255,255,0.6);
}

.sb-5 { background: var(--dark-blue); }
.sb-4 { background: #4A9CC7; }
.sb-3 { background: var(--orange); }
.sb-2 { background: #999; }
.sb-1 { background: #333; }

.score-bar-labels {
  display: flex;
  margin-top: 12px;
  gap: 4px;
}

.score-bar-label {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  background: var(--white);
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.score-bar-label:hover {
  border-color: var(--dark-blue);
  box-shadow: var(--shadow-sm);
}

.score-bar-label.selected {
  border-color: var(--dark-blue);
  background: var(--dark-blue-glow);
  box-shadow: 0 2px 8px rgba(12,69,89,0.12);
}

.score-bar-label::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1.5px solid var(--gray);
  border-left: 1.5px solid var(--gray);
  transition: all 0.2s;
}

.score-bar-label.selected::before {
  border-color: var(--dark-blue);
  background: var(--dark-blue-glow);
}

.score-bar-label-title {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 2px;
}

.sbl-5 .score-bar-label-title { color: var(--dark-blue); }
.sbl-4 .score-bar-label-title { color: #4A9CC7; }
.sbl-3 .score-bar-label-title { color: var(--orange); }
.sbl-2 .score-bar-label-title { color: #999; }
.sbl-1 .score-bar-label-title { color: #333; }

.score-bar-label-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.3;
}

/* ---- Notes ---- */
.notes-section {
  margin-top: 14px;
}

.notes-input {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--gray);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  resize: none;
  min-height: 60px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.notes-input:focus {
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 3px rgba(12,69,89,0.06);
}
.notes-input::placeholder { color: #bbb; }

/* ---- Nav Buttons ---- */
.nav-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.btn-back {
  background: var(--white);
  border: 1.5px solid var(--gray);
  color: var(--muted);
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-back:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
  box-shadow: var(--shadow-sm);
}

.btn-next {
  background: var(--orange);
  border: none;
  color: #000;
  padding: 15px 36px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  flex: 1;
  position: relative;
  overflow: hidden;
}

.btn-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-next:hover:not(:disabled)::before { transform: translateX(100%); }
.btn-next:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 24px var(--orange-glow), var(--shadow-sm); }
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- Lead Form ---- */
.lead-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.5s cubic-bezier(0.16,1,0.3,1);
}

.lead-form h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lead-form p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.preview-score {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--gray);
}

.preview-num {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.preview-num.excellent { color: var(--green); }
.preview-num.good { color: var(--dark-blue); }
.preview-num.warning { color: var(--orange); }
.preview-num.fail { color: var(--red); }

.preview-text { flex: 1; }
.preview-text strong { display: block; color: var(--text-light); font-size: 16px; margin-bottom: 4px; }
.preview-text span { color: var(--muted); font-size: 13px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 3px rgba(12,69,89,0.08);
}
.form-group input::placeholder { color: #bbb; }

/* ---- Results (white two-column) ---- */
.results-section { animation: slideIn 0.6s cubic-bezier(0.16,1,0.3,1); }

.results-wide {
  max-width: 1200px;
  width: 100vw;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.results-two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.results-col-left {
  position: relative;
  top: 0;
}

.results-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .results-two-col { grid-template-columns: 1fr; }
  .results-col-left { position: relative; top: 0; }
  .results-wide { padding: 0 16px 60px; }
}

.results-header {
  text-align: center;
  padding: 40px 0 32px;
}

.big-score {
  font-family: 'Oswald', sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.big-score.excellent { color: var(--green); }
.big-score.good { color: var(--dark-blue); }
.big-score.warning { color: var(--orange); }
.big-score.fail { color: var(--red); }

.score-tier {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.score-subtitle { color: var(--muted); font-size: 14px; }

.tier-detail-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.tier-detail-copy {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tier-detail-link {
  display: inline-block;
  background: var(--dark-blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.tier-detail-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(12,69,89,0.25);
}

/* AI Insight */
.ai-insight-box {
  background: var(--white);
  border: 2px solid var(--dark-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.ai-insight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-blue), var(--orange));
}

.ai-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-label::before { content: '\2726'; font-size: 14px; color: var(--orange); }

.ai-insight-text { color: var(--text); font-size: 15px; line-height: 1.7; }

.loading-dots { display: inline-flex; gap: 5px; }

.loading-dots span {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: bounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Action Plan */
.action-plan {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.action-plan h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.action-plan p { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.action-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}

.action-item:last-child { border-bottom: none; }

.action-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* Responses */
.responses-section {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.responses-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.responses-section > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.results-grid { display: grid; gap: 10px; margin: 32px 0; }

.result-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s;
}

.result-item:hover { box-shadow: var(--shadow-sm); }

.result-score-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.badge-5 { background: rgba(76,175,130,0.12); color: var(--green); }
.badge-4 { background: rgba(74,156,199,0.12); color: #4A9CC7; }
.badge-3 { background: rgba(236,163,51,0.12); color: var(--orange); }
.badge-2 { background: rgba(153,153,153,0.12); color: #999; }
.badge-1 { background: rgba(224,90,90,0.12); color: var(--red); }

.result-content { flex: 1; }
.result-title { font-size: 14px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; line-height: 1.4; }
.result-rec { font-size: 13px; color: var(--muted); line-height: 1.5; }

.result-note {
  font-size: 12px;
  color: var(--dark-blue);
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.4;
}

.result-resource-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-blue);
  text-decoration: none;
  padding: 6px 14px;
  background: var(--dark-blue-glow);
  border-radius: 6px;
  transition: all 0.2s;
}

.result-resource-link:hover {
  background: var(--dark-blue);
  color: var(--white);
}

/* Book Recommendation Tag (per-question) */
.result-book-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--dark-blue);
  background: var(--dark-blue-glow);
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1.4;
}

/* Recommended Reading Section */
.recommended-reading {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.recommended-reading h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 4px;
}
.recommended-reading > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.book-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.book-card {
  display: flex;
  background: var(--tan);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray);
}
.book-card-content {
  padding: 20px;
  flex: 1;
}
.book-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 2px;
}
.book-card-subtitle {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.book-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.book-card-areas {
  font-size: 12px;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.book-card-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--dark-blue);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.2s;
}
.book-card-btn:hover {
  background: var(--dark-blue-light);
}

/* 90-Day Plan */
.ninety-day-plan {
  background: var(--white);
  border: 2px solid var(--dark-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.ninety-day-plan::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-blue), var(--orange));
}

.ninety-day-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.ninety-day-plan-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.plan-phase { margin-bottom: 20px; }
.plan-phase:last-child { margin-bottom: 0; }

.plan-phase-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  text-transform: uppercase;
}

.plan-task {
  padding: 6px 0 6px 16px;
  position: relative;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.plan-task::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* CTA Box */
.cta-box {
  background: linear-gradient(165deg, var(--dark-blue) 0%, #0a3a4a 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,163,51,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  position: relative;
}

.cta-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: #000;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,163,51,0.4);
}

.cta-box-bottom { margin-top: 28px; }

/* Email Results */
.email-section {
  text-align: center;
  margin-top: 28px;
}

.btn-download {
  background: var(--white);
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
  padding: 14px 36px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-download:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-download:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.email-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.email-status.success { color: var(--green); }
.email-status.error { color: var(--red); }

/* ---- Share Section ---- */
.share-section {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid #E7EDEF;
  margin-top: 8px;
}

.share-label {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid;
}

.btn-share-linkedin {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
}

.btn-share-linkedin:hover {
  background: #004182;
  border-color: #004182;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.btn-share-copy {
  background: #fff;
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-share-copy:hover {
  background: var(--dark-blue);
  color: #fff;
  transform: translateY(-1px);
}

.copy-status {
  margin-top: 12px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

/* ---- Motivator Card (smooth transitions) ---- */
.motivator-card {
  background: linear-gradient(165deg, var(--dark-blue) 0%, #0a3a4a 100%);
  color: var(--white);
  padding: 64px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.motivator-card.motivator-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.motivator-card.motivator-exit {
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

.motivator-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236,163,51,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.motivator-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.motivator-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  position: relative;
}

/* ---- Celebration Screen ---- */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100;
}

#celebration-section {
  position: relative;
}

#celebration-section.fade-out {
  animation: celebFadeOut 0.6s ease-in forwards;
}

@keyframes celebFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}

.celebration-content {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 56px 36px 44px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.5s cubic-bezier(0.16,1,0.3,1);
}

.celebration-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: celebPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}

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

.celebration-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.celebration-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

/* Celebration continue button — smooth fade in */
#celebration-continue-btn {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  flex: none;
  width: auto;
  padding: 15px 48px;
}

.celebration-continue-hidden {
  opacity: 0 !important;
  transform: translateY(8px) !important;
  pointer-events: none;
}

#celebration-continue-btn.celebration-continue-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto;
}

/* ---- Tier Detail Box ---- */
.tier-detail-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.tier-detail-copy {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tier-detail-link {
  display: inline-block;
  background: var(--dark-blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.tier-detail-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(12,69,89,0.25);
}

/* ---- Result Resource Links ---- */
.result-resource-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-blue);
  text-decoration: none;
  padding: 6px 14px;
  background: var(--dark-blue-glow);
  border-radius: 6px;
  transition: all 0.2s;
}

.result-resource-link:hover {
  background: var(--dark-blue);
  color: var(--white);
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 48px 20px 0;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.5px;
}

/* ---- Responsive ---- */
@media (max-width: 520px) {
  .container { padding: 0 16px 60px; }
  .question-card, .lead-form, .action-plan { padding: 24px 20px; }
  .big-score { font-size: 72px; }
  .welcome-card { padding: 32px 20px; }
  .legend-bar-item { font-size: 18px; padding: 10px 0; }
  .legend-label-desc { font-size: 9px; }
  .legend-label-title { font-size: 10px; }
  .legend-label { padding: 8px 2px; }
  .score-bar-item { font-size: 18px; padding: 10px 0; }
  .score-bar-label-desc { display: none; }
  .score-bar-label-title { font-size: 11px; }
  .score-bar-label { padding: 8px 2px; }
  .score-bar-label::before { display: none; }
  .tier-detail-box { padding: 20px; }
  .motivator-card { padding: 48px 24px; }
  .hero-inner { padding: 32px 16px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 28px; }
  .features-section { padding: 60px 16px; }
  .testimonials-section { padding: 60px 16px; }
  .bottom-cta { padding: 40px 16px; }
  .bottom-cta-inner { padding: 40px 24px; }
  .slide-content { padding: 16px; }

  /* Tracker dots: force 5 per row on mobile */
  .score-tracker {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .tracker-dot {
    width: 100%;
    height: 32px;
    font-size: 11px;
    border-radius: 6px;
  }

  /* Share buttons stack on mobile */
  .share-buttons { flex-direction: column; align-items: center; }
  .btn-share { width: 100%; max-width: 280px; justify-content: center; }
}
