/* ⚠️ MOBILE-FIRST: Base rules = mobile. Use @media(min-width: X) for desktop. Do NOT use @media(max-width) for layout.
   ==========================================
   SECTIONS - Page Section Styles
   ========================================== */

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  background: var(--bg-cream);
  padding: clamp(28px, 5vh, 120px) var(--pad);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media(min-width: 768px) {
  #hero {
    padding: clamp(40px, 8vh, 120px) var(--pad);
    min-height: 85vh;
  }
}

.hero-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(175, 144, 91, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media(min-width: 768px) {
  .hero-inner {
    gap: 2.5rem;
  }
}

@media(min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media(min-width: 768px) {
  .hero-right {
    display: flex;
  }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand-gold);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  color: var(--brand-navy);
}

@media(min-width: 768px) {
  .hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
  }
}

.hero-headline em {
  font-style: italic;
  color: var(--brand-gold);
}

.hero-pain {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
  .hero-pain {
    gap: 14px;
    margin-bottom: 2.5rem;
  }
}

.pain-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
}

.pain-line .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
  margin-top: 8px;
}

.pain-line strong {
  color: var(--brand-navy);
  font-weight: 700;
}

.hero-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  min-height: 48px;
}

@media(min-width: 768px) {
  .hero-stat-card {
    padding: 1.2rem 1.4rem;
    gap: 15px;
  }
}

.hero-stat-card i[data-lucide] {
  color: var(--brand-gold);
}

.stat-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}

@media(min-width: 768px) {
  .stat-num {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-label strong {
  color: var(--brand-navy);
}

/* ==========================================
   HERO ADVANTAGES SECTION
   ========================================== */
#hero-advantages {
  background: var(--card-bg);
  padding: clamp(40px, 6vw, 80px) var(--pad);
  border-top: 1px solid var(--border-light);
}

.hero-adv-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-adv-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 640px;
}

.hero-adv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media(min-width: 640px) {
  .hero-adv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

@media(min-width: 900px) {
  .hero-adv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.hero-adv-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.4rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 3px solid var(--brand-gold);
}

@media(min-width: 768px) {
  .hero-adv-card {
    padding: 1.6rem;
  }
}

.hero-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(29, 45, 68, 0.08);
}

.hero-adv-icon {
  width: 56px;
  height: 56px;
  background: rgba(175, 144, 91, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--brand-gold);
}

.hero-adv-title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media(min-width: 768px) {
  .hero-adv-title {
    font-size: 1.05rem;
  }
}

.hero-adv-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media(min-width: 768px) {
  .hero-adv-desc {
    font-size: 0.88rem;
  }
}

/* ==========================================
   SOCIAL PROOF SECTION
   ========================================== */
#social-proof {
  background: var(--card-bg);
  padding: clamp(30px, 5vw, 60px) var(--pad);
  border-top: 1px solid var(--border-light);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.9rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--brand-gold);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
#how-it-works {
  background: var(--card-bg);
  padding: clamp(40px, 6vw, 80px) var(--pad);
}

.hiw-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--brand-navy);
}

.section-h2 em {
  font-style: italic;
  color: var(--brand-gold);
}

.hiw-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media(min-width: 640px) {
  .hiw-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

@media(min-width: 900px) {
  .hiw-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.hiw-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.4rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media(min-width: 768px) {
  .hiw-card {
    padding: 1.6rem;
  }
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(29, 45, 68, 0.08);
}

.hiw-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(175, 144, 91, 0.25);
  line-height: 1;
}

.hiw-icon {
  width: 56px;
  height: 56px;
  background: rgba(175, 144, 91, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--brand-gold);
}

.hiw-title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

@media(min-width: 768px) {
  .hiw-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }
}

.hiw-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media(min-width: 768px) {
  .hiw-desc {
    font-size: 0.88rem;
  }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
#benefits {
  background: var(--card-bg);
  padding: clamp(40px, 6vw, 80px) var(--pad);
  border-top: 1px solid var(--border-light);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
#faq {
  background: var(--bg-cream);
  padding: clamp(40px, 6vw, 80px) var(--pad);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
#final-cta {
  background: var(--brand-navy);
  padding: clamp(50px, 8vw, 100px) var(--pad);
  text-align: center;
}

/* ==========================================
   APP BUILDER SECTION
   ========================================== */
#app-builder {
  background: var(--card-bg);
  padding: clamp(40px, 6vw, 100px) var(--pad);
  border-top: 1px solid var(--border-light);
}

.app-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ==========================================
   AUDIT UI COMPONENTS
   ========================================== */

/* Score row: stacks vertically on mobile, side-by-side on desktop */
.score-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

@media(min-width: 640px) {
  .score-row {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--border-light);
  flex-shrink: 0;
  background: var(--card-bg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.score-value {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.score-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 4px;
  text-align: center;
}

/* Progress Bars */
.metrics-container {
  flex: 1;
  width: 100%;
  background: var(--card-bg);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.metric-row {
  margin-bottom: 12px;
}

.metric-row:last-child {
  margin-bottom: 0;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--brand-navy);
}

.metric-bar-bg {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-out;
}

.metric-reason {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.4;
}

/* Competitor Box */
.competitor-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--error-red);
}

.competitor-box h4 {
  color: #B91C1C;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.competitor-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #7F1D1D;
  line-height: 1.6;
}

/* HR Monologue */
.hr-monologue {
  background: #F8FAFC;
  color: var(--text-main);
  padding: 18px;
  border-radius: 8px;
  font-style: italic;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand-gold);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hr-monologue::before {
  content: "💭 Isi Kepala HRD pas scan CV kamu (6 detik pertama):";
  display: block;
  font-style: normal;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Strengths Box */
.strengths-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #10B981;
}

.strengths-box h4 {
  color: #166534;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.strengths-box ul {
  margin: 0;
  padding-left: 20px;
  color: #15803D;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Flaw Items */
.flaw-item {
  background: #FEF2F2;
  border-left: 4px solid var(--error-red);
  padding: 14px;
  margin-bottom: 10px;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: #7F1D1D;
  line-height: 1.5;
}

.flaw-item strong {
  color: #B91C1C;
  display: block;
  margin-bottom: 4px;
}

.flaw-item .hr-pov {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #991B1B;
  font-style: italic;
  border-top: 1px dashed rgba(220, 38, 38, 0.2);
  padding-top: 8px;
}

/* Target Review Box */
.target-review-box {
  background: #FEF2F2;
  color: #B91C1C;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #FECACA;
  border-left: 4px solid var(--error-red);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.target-review-box h4 {
  color: #7F1D1D;
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: var(--sans);
}

.target-review-box .target-role {
  font-family: monospace;
  font-weight: 700;
  background: rgba(220, 38, 38, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: #991B1B;
}

/* ==========================================
   QUESTION BLOCKS
   ========================================== */
.question-block {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand-navy);
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.question-context {
  font-size: 0.75rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.question-text {
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--brand-navy);
  font-size: 1rem;
  line-height: 1.5;
}

/* ==========================================
   SKELETON CV
   ========================================== */
.skeleton-cv {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(29, 45, 68, 0.08);
  border: 1px solid var(--border-light);
}

@media(max-width: 640px) {
  .skeleton-cv {
    padding: 15px;
  }
}

.skeleton-header {
  height: 20px;
  background: #e2e8f0;
  width: 50%;
  margin: 0 auto 15px auto;
  border-radius: 4px;
}

.skeleton-sub {
  height: 8px;
  background: #f1f5f9;
  width: 80%;
  margin: 0 auto 25px auto;
  border-radius: 4px;
}

.skeleton-line {
  height: 8px;
  background: #f1f5f9;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-line.short { width: 40%; }
.skeleton-line.medium { width: 70%; }
.skeleton-line.long { width: 100%; }

.skeleton-metric-block {
  border: 1px dashed #cbd5e1;
  padding: 12px;
  border-radius: 6px;
  margin: 12px 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  opacity: 0.6;
  filter: grayscale(100%);
}

.skeleton-metric-block.unlocked {
  border-color: #10B981;
  background: #f0fdf4;
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.02);
}

.metric-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 10px;
}

.skeleton-metric-block.unlocked .metric-icon {
  background: #10B981;
}

/* ==========================================
   TEASER CV BLOCKS
   ========================================== */
.teaser-cv-block {
  background: #FFFFFF;
  border: 1px solid #A7F3D0;
  border-radius: 8px;
  padding: 20px;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
  font-family: 'Times New Roman', Times, serif;
  color: #333;
}

.teaser-cv-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.teaser-cv-title {
  font-weight: bold;
  font-size: 15px;
  color: #000;
}

.teaser-cv-company {
  font-style: italic;
  font-size: 14px;
}

.teaser-cv-block ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.teaser-cv-block li {
  margin-bottom: 6px;
}

.placeholder {
  background: #FEF9C3;
  color: #92400E;
  padding: 2px 4px;
  font-weight: bold;
  border-radius: 4px;
  border: 1px dashed #EAB308;
  font-size: 13px;
}

/* Upsell Pitch */
.upsell-pitch {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}

/* ==========================================
   CV DOCUMENT STYLES
   ========================================== */
.cv-document {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(29, 45, 68, 0.08);
  border-top: 8px solid var(--brand-navy);
  border-radius: 4px;
  color: #1E293B;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

@media(min-width: 640px) {
  .cv-document {
    padding: 40px;
  }
}

.cv-header {
  text-align: center;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.cv-header h1 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--serif);
  color: var(--brand-navy);
}

@media(min-width: 640px) {
  .cv-header h1 {
    font-size: 24px;
  }
}

.cv-contact {
  font-size: 11px;
  color: #64748B;
  margin-top: 8px;
}

.cv-section-title {
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 4px;
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--brand-navy);
  font-weight: 800;
  letter-spacing: 1px;
}

.cv-job {
  margin-bottom: 15px;
}

.cv-job-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1E293B;
  font-size: 12px;
}

.cv-job-role {
  font-style: italic;
  color: #475569;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 12px;
}

.cv-bullets {
  margin: 0;
  padding-left: 18px;
}

.cv-bullets li {
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: #334155;
}

/* ==========================================
   SAMPLE JOURNEY SECTION
   ========================================== */
#sample-journey {
  background: var(--bg-cream);
  padding: clamp(40px, 6vw, 80px) var(--pad);
  border-top: 1px solid var(--border-light);
}

.journey-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.journey-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 640px;
}

.journey-persona {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 2.5rem;
}

.persona-avatar {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(175, 144, 91, 0.08);
  border-radius: 50%;
}

.persona-bio {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
}

.persona-bio strong {
  color: var(--brand-navy);
  font-size: 1.05rem;
}

.persona-bio span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

/* ==========================================
   CASE STUDY — 4-STEP JOURNEY
   ========================================== */

.case-study-header {
  text-align: center;
  margin-bottom: 3rem;
}

.case-study-badge {
  display: inline-block;
  background: var(--brand-navy);
  color: var(--card-bg);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.journey-step {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 0;
  position: relative;
}

@media(min-width: 768px) {
  .journey-step {
    padding: 2.5rem;
  }
}

.step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.2rem;
}

.step-marker.step-1 { background: var(--error-red); }
.step-marker.step-2 { background: var(--brand-gold); }
.step-marker.step-3 { background: var(--brand-navy); }
.step-marker.step-4 { background: var(--success-green); }

.step-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.step-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.journey-arrow {
  text-align: center;
  font-size: 2rem;
  color: var(--brand-gold);
  padding: 0.5rem 0;
  line-height: 1;
}

/* Problem Tags */
.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.problem-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  color: #7F1D1D;
  border: 1px solid #FECACA;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Audit Highlight */
.audit-highlight {
  text-align: center;
  padding: 2rem;
  background: #FEF2F2;
  border: 2px dashed var(--error-red);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.audit-score {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--error-red);
  line-height: 1;
}

.audit-score span {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.audit-verdict {
  font-size: 1rem;
  font-weight: 700;
  color: var(--error-red);
  margin-top: 8px;
}

.audit-quote {
  background: #F8FAFC;
  border-left: 4px solid var(--brand-gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}

.audit-quote span {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Transform Comparison */
.transform-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
  .transform-comparison {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
  }
}

.transform-before, .transform-after {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.2rem;
}

.transform-before {
  border-left: 4px solid var(--error-red);
}

.transform-after {
  border-left: 4px solid var(--success-green);
  background: #F0FDF4;
}

.transform-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.transform-before .transform-label { color: var(--error-red); }
.transform-after .transform-label { color: var(--success-green); }

.transform-before ul, .transform-after ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.transform-before ul li {
  color: var(--text-muted);
  margin-bottom: 6px;
}

.transform-after ul li {
  color: var(--text-main);
  margin-bottom: 8px;
}

.transform-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--brand-gold);
}

/* Result CTA */
.journey-result-cta {
  text-align: center;
  margin-top: 3rem;
  background: var(--brand-navy);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3rem);
  color: white;
}

.result-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.result-stat {
  text-align: center;
}

.result-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.result-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  font-weight: 600;
  line-height: 1.4;
}

.result-arrow {
  font-size: 1.5rem;
  color: var(--brand-gold);
}

.result-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

@media(max-width: 640px) {
  .result-divider {
    display: none;
  }
}

.result-caption {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}

.journey-result-cta .cta-hero {
  margin-top: 0;
}

/* ==========================================
   JOURNEY IMAGE & INSIGHT
   ========================================== */
.journey-before-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: top center;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: #fff;
}

.journey-insight {
  background: #FFF8E1;
  border: 1px solid #FDE047;
  border-left: 4px solid var(--brand-gold);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-main);
}

.journey-insight strong {
  color: var(--brand-navy);
}

.journey-insight em {
  font-style: italic;
  color: var(--brand-gold);
  font-weight: 700;
}

/* ==========================================
   CV SKILL TAGS (used in journey final preview)
   ========================================== */
.cv-skill {
  display: inline-block;
  background: #F1F5F9;
  color: var(--brand-navy);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border-light);
}

/* ==========================================
   INTERVIEW PREDICTOR
   ========================================== */
.interview-box {
  background: #F5F3FF;
  border: 1px solid #C4B5FD;
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
  border-left: 5px solid var(--accent-purple);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.interview-box h4 {
  color: #5B21B6;
  margin-top: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.interview-q-block {
  background: var(--card-bg);
  border: 1px solid #DDD6FE;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.iq-text {
  font-weight: 700;
  color: #4C1D95;
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}

.iq-context {
  font-size: 0.85rem;
  color: #6D28D9;
  font-style: italic;
  margin-bottom: 10px;
}

.iq-tip {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
  border-left: 2px solid var(--accent-purple);
  padding-left: 10px;
  margin-left: 5px;
}