/* ===== PATHWAY SLIDES ===== */
.pathway-slide {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pathway-slide:nth-child(even) { background: var(--gray-50); }
.pathway-slide:last-child { padding: 72px 0 80px; }
.pathway-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pathway-slide:nth-child(even) .pathway-inner { direction: rtl; }
.pathway-slide:nth-child(even) .pathway-inner > * { direction: ltr; }

.pathway-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pathway-label-combined {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pathway-label-combined::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.pathway-label-combined svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.pathway-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.pathway-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.pathway-help { margin-bottom: 28px; }
.pathway-help-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-600);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
  padding: 8px 14px;
  background: var(--blue-50);
  border-radius: 8px;
  display: inline-block;
}
.pathway-help-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}
.pathway-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.pathway-cta:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}
/* Feature checklist (replaces generic "How We Help" text) */
.help-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.help-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}
.help-feature svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

/* ===== PARTNER STORY CARD (5-state flow) ===== */
.psc-wrap {
  width: 100%; max-width: 480px;
  display: flex; flex-direction: column; gap: 12px;
}
.psc {
  width: 100%; height: 500px;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 8px 40px rgba(15,22,40,0.08);
  border: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.psc-state {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.psc-active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto; position: relative; flex: 1;
}

/* Dots — below the card */
.psc-dots { display: flex; justify-content: center; gap: 6px; }
.psc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); transition: all 0.3s; }
.psc-dot-on { width: 22px; border-radius: 3px; background: var(--blue-500); }

/* ---- State 0: Hero image ---- */
.psc-state[data-psc="0"] { padding: 0; overflow: hidden; }
.psc-hero-img {
  width: 100%; height: 100%; min-height: 460px;
  object-fit: cover; display: block;
}

/* ---- State 1: Questions (typing) ---- */
.psc-bubble-q {
  padding: 14px 16px;
  background: var(--gray-100); border-radius: 14px 14px 14px 4px;
  font-size: 14px; color: var(--gray-700); line-height: 1.5;
  margin-bottom: 18px; min-height: 48px;
}
.psc-fields {
  display: flex; flex-direction: column; gap: 10px;
}
.psc-field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--gray-50); border-radius: 10px;
  border: 1px solid var(--gray-200);
  opacity: 0; transform: translateY(8px);
  transition: all 0.35s ease;
}
.psc-field-show { opacity: 1; transform: translateY(0); }
.psc-field-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }
.psc-field-val { font-size: 14px; font-weight: 600; color: var(--gray-800); }

/* ---- State 2: Visa matches ---- */
.psc-answer-label {
  font-size: 12px; font-weight: 600; color: var(--gray-400);
  margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.5px;
}
.psc-visa-list { display: flex; flex-direction: column; gap: 8px; }
.psc-visa {
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--gray-200); background: var(--white);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.35s ease;
}
.psc-visa-show { opacity: 1 !important; transform: translateY(0) !important; }
.psc-visa strong { font-size: 14px; color: var(--gray-800); }
.psc-visa span { font-size: 12px; color: var(--gray-400); }
.psc-visa-top { border-color: var(--blue-500); background: var(--blue-50); }
.psc-visa-top strong { color: var(--blue-700); }
.psc-visa-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--blue-500); margin-bottom: 2px; }

/* ---- State 3: Eligibility ---- */
.psc-selected {
  padding: 12px 16px;
  background: var(--blue-50); border-radius: 10px;
  font-size: 15px; font-weight: 700; color: var(--blue-700);
  margin-bottom: 16px;
}
.psc-checks { display: flex; flex-direction: column; gap: 12px; }
.psc-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-700);
  opacity: 0; transform: translateX(-10px);
  transition: all 0.35s ease;
}
.psc-check svg { flex-shrink: 0; }
.psc-check-show { opacity: 1; transform: translateX(0); }
.psc-qualify {
  margin-top: 16px; padding: 12px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 12px; text-align: center;
  font-size: 16px; font-weight: 700; color: var(--green);
  opacity: 0; transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.psc-qualify-show { opacity: 1; transform: scale(1); }

/* ---- State 4: Pathway ---- */
.psc-pathway-label {
  font-size: 14px; font-weight: 700; color: var(--blue-600);
  margin: 0 0 18px; line-height: 1.4;
}
.psc-tl { display: flex; flex-direction: column; padding-left: 14px; flex: 1; }
.psc-tl-item {
  display: flex; gap: 16px; position: relative;
  padding-bottom: 16px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.35s ease;
}
.psc-tl-item::before {
  content: ''; position: absolute; left: 6px; top: 16px; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.psc-tl-last::before { display: none; }
.psc-tl-last { padding-bottom: 0; }
.psc-tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-500); flex-shrink: 0;
  margin-top: 3px; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.psc-tl-content { display: flex; flex-direction: column; gap: 2px; }
.psc-tl-content strong { font-size: 14px; color: var(--gray-800); }
.psc-tl-content span { font-size: 12px; color: var(--gray-500); line-height: 1.4; }
/* Staggered timeline reveal */
.psc-active .psc-tl-item { opacity: 1; transform: translateY(0); }
.psc-active .psc-tl-item:nth-child(1) { transition-delay: 0.1s; }
.psc-active .psc-tl-item:nth-child(2) { transition-delay: 0.3s; }
.psc-active .psc-tl-item:nth-child(3) { transition-delay: 0.5s; }
.psc-active .psc-tl-item:nth-child(4) { transition-delay: 0.7s; }
.psc-active .psc-tl-item::before { background: var(--blue-400); transition: background 0.3s ease; }

.psc-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.psc-tags span {
  padding: 4px 10px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: 100px;
  font-size: 11px; font-weight: 500; color: var(--gray-600);
  opacity: 0; transform: translateY(6px);
  transition: all 0.3s ease;
}
.psc-tag-show { opacity: 1 !important; transform: translateY(0) !important; }

@media (max-width: 600px) {
  .psc-wrap { max-width: 100%; }
  .psc { max-width: 100%; height: 290px; }
  .psc-state { padding: 20px 18px; }
  .psc-state[data-psc="0"] { padding: 0; }
}

/* ===== PARTNER COLLAGE ===== */
.partner-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  height: 380px;
}
.partner-collage .ref-img-1 { grid-row: 1 / 3; }
@media (max-width: 600px) {
  .partner-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto; gap: 8px;
    max-width: 100%;
  }
  .partner-collage .ref-img { height: 140px; }
  .partner-collage .ref-img-1 { grid-row: auto; grid-column: 1 / 3; height: 170px; }
  .partner-collage .ref-img-5 { grid-column: 2; height: 140px; }
}

/* ===== USE CASE CARD (multi-step process demo) ===== */
.ucc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  position: relative;
  min-height: 340px;
}

/* Progress dots at top */
.ucc-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.ucc-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
  transition: background 0.4s;
}
.ucc-step-dot.ucc-step-active {
  background: var(--blue-500);
}
.ucc-step-dot.ucc-step-done {
  background: var(--green);
}
.ucc-step-line {
  flex: 1;
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.ucc-step-fill {
  width: 0%;
  height: 100%;
  background: var(--blue-500);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.ucc-step-line.ucc-line-done .ucc-step-fill {
  width: 100%;
}

/* Panels */
.ucc-panel {
  display: none;
}
.ucc-panel.ucc-panel-active {
  display: block;
  animation: uccFadeIn 0.5s ease;
}
@keyframes uccFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ucc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

/* Step 1: Question fields */
.ucc-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ucc-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ucc-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ucc-input {
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--gray-50);
}
.ucc-input-select {
  position: relative;
}
.ucc-input-select::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-top-color: var(--gray-400);
}
.ucc-cursor {
  color: var(--blue-500);
  animation: uccBlink 1s step-end infinite;
}
@keyframes uccBlink {
  50% { opacity: 0; }
}

/* Step 2: Visa options */
.ucc-visa-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ucc-visa-option {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ucc-visa-option strong {
  font-size: 13px;
  color: var(--gray-800);
}
.ucc-visa-option span {
  font-size: 11px;
  color: var(--gray-500);
}
.ucc-visa-best {
  border-color: var(--blue-400);
  background: var(--blue-50);
  position: relative;
}
.ucc-visa-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  padding: 2px 8px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Step 3: Eligibility checks */
.ucc-visa-selected {
  padding: 10px 14px;
  background: var(--blue-50);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 14px;
}
.ucc-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ucc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
}
.ucc-check svg {
  flex-shrink: 0;
}
.ucc-qualify {
  margin-top: 14px;
  padding: 10px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

/* Step 4: Pathway result */
.ucc-docs-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .ucc { max-width: 100%; padding: 18px; min-height: 300px; }
  .ucc-title { font-size: 14px; }
}

/* ===== PARTNER RESULT CARD (visual "How We Help") ===== */
.partner-result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prc-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prc-match {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
.prc-visa {
  padding: 12px 14px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prc-visa strong { font-size: 14px; color: var(--blue-700); }
.prc-visa span { font-size: 12px; color: var(--blue-500); }
.prc-timeline {
  display: flex;
  align-items: center;
  gap: 0;
}
.prc-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.prc-tl-step span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  padding: 4px 8px;
  background: var(--gray-50);
  border-radius: 6px;
}
.prc-tl-step small {
  font-size: 9px;
  color: var(--gray-400);
}
.prc-tl-active span {
  background: var(--blue-500);
  color: var(--white);
}
.prc-tl-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  min-width: 12px;
}
.prc-docs { display: flex; flex-direction: column; gap: 6px; }
.prc-doc-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prc-doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.prc-doc-tags span {
  padding: 4px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
}

/* Standalone result card (right side visual) */
.prc-standalone {
  width: 100%;
  max-width: 440px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
}
.prc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.prc-section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.prc-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  margin-top: 4px;
}
.prc-footer svg {
  flex-shrink: 0;
  color: var(--gray-400);
  margin-top: 1px;
}
.prc-footer span {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 600px) {
  .prc-standalone { max-width: 100%; padding: 18px; }
}

.pathway-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

/* ===== WORK VISA CARD ===== */
.wv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(15,22,40,0.06);
  padding: 28px;
  max-width: 480px;
  width: 100%;
}
.wv-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.wv-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wv-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.wv-option:hover {
  box-shadow: 0 4px 16px rgba(15,22,40,0.06);
}
.wv-option-best {
  border-color: var(--blue-300);
  background: var(--blue-50);
  position: relative;
}
.wv-option-badge {
  position: absolute;
  top: -9px;
  right: 14px;
  padding: 3px 10px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.wv-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-500);
}
.wv-option-best .wv-option-icon {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
}
.wv-option-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}
.wv-option-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-500);
}
.wv-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  font-style: italic;
}

@media (max-width: 600px) {
  .wv-card { padding: 18px; max-width: 100%; }
  .wv-heading { font-size: 11px; margin-bottom: 14px; }
  .wv-options { gap: 8px; }
  .wv-option { padding: 12px; gap: 10px; align-items: center; }
  .wv-option-icon { width: 34px; height: 34px; }
  .wv-option-icon svg { width: 18px; height: 18px; }
  .wv-option-name { font-size: 14px; margin-bottom: 0; }
  .wv-option-desc { display: none; }
  .wv-option-badge { top: -7px; font-size: 9px; padding: 2px 8px; }
  .wv-footer { margin-top: 12px; font-size: 11px; }
}

/* ===== OCCUPATION CARD ===== */
.occ-card {
  width: 100%; max-width: 420px; height: 420px;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 8px 40px rgba(15,22,40,0.08);
  border: 1px solid var(--gray-200);
  overflow: hidden; position: relative;
}
.occ-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: none;
}
.occ-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  animation: occSlideIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.occ-exit {
  animation: occSlideOut 0.4s cubic-bezier(0.4,0,1,1) both;
}
@keyframes occSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes occSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-30px); }
}
.occ-img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.occ-info {
  padding: 18px 20px; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.occ-demand {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 4px 10px; border-radius: 100px;
  width: fit-content;
}
.occ-demand-high { background: #ECFDF5; color: #059669; }
.occ-demand-med { background: #FEF3C7; color: #B45309; }
.occ-demand-critical { background: #FEE2E2; color: #DC2626; }
.occ-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--gray-900);
  margin: 0;
}
.occ-detail {
  font-size: 13px; color: var(--gray-500); margin: 0;
}
.occ-salary {
  font-size: 14px; font-weight: 700; color: var(--blue-600); margin: 0;
  margin-top: auto;
}
.occ-counter {
  position: absolute; bottom: 16px; right: 20px;
  font-size: 12px; font-weight: 600; color: var(--gray-400);
}
@media (max-width: 600px) {
  .occ-card { height: 380px; max-width: 100%; }
  .occ-img { height: 180px; }
}

/* ===== HUMANITARIAN 2-STATE CARD ===== */
.hrc {
  width: 100%;
  max-width: 480px;
  position: relative;
  min-height: 400px;
  padding-bottom: 36px;
}
.hrc-state {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hrc-state.hrc-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
  pointer-events: auto;
}
.hrc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
}
.hrc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--blue-400);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hrc-dot:hover { transform: scale(1.2); }
.hrc-dot-active {
  background: var(--blue-500);
  border-color: var(--blue-500);
}
.hrc-result {
  border-left: 3px solid var(--green);
}

/* ===== REFUGEE COLLAGE ===== */
.refugee-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  height: 380px;
}
.ref-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.ref-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.ref-img:hover img { transform: scale(1.05); }
.ref-img-1 { grid-row: 1 / 3; }
@media (max-width: 600px) {
  .hrc { max-width: 100%; min-height: 340px; }
  .refugee-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto; gap: 8px;
    max-width: 100%;
  }
  .ref-img { height: 140px; }
  .ref-img-1 { grid-row: auto; grid-column: 1 / 3; height: 170px; }
  .ref-img-5 { grid-column: 2; height: 140px; }
}

/* ===== PATHWAY SINGLE IMAGE ===== */
.pathway-image-card {
  width: 100%;
  max-width: 480px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pathway-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.pathway-image-card:hover img {
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .pathway-image-card { height: 280px; max-width: 100%; }
}

/* ===== BUSINESS GRID (1 large + 3 small) ===== */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 2fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  height: 420px;
}
.biz-g {
  border-radius: 14px;
  overflow: hidden;
}
.biz-g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.biz-g:hover img { transform: scale(1.05); }
.biz-g-main {
  grid-column: 1 / 4;
}
@media (max-width: 600px) {
  .biz-grid { height: 300px; max-width: 100%; gap: 8px; }
}

/* ===== GLOBE ANIMATION ===== */
.globe-anim {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}
.globe-svg {
  width: 100%;
  height: 100%;
}

/* Flight arcs - hidden by default, reset between cycles */
.globe-arc {
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 2s ease;
}
.globe-arc-2 { stroke-dashoffset: 150; }
.globe-arc-3 { stroke-dashoffset: 350; }

/* Phase 2: Arcs draw in */
.globe-anim.animated .globe-arc-1 { stroke-dashoffset: 0; transition-delay: 0s; }
.globe-anim.animated .globe-arc-2 { stroke-dashoffset: 0; transition-delay: 0.8s; }
.globe-anim.animated .globe-arc-3 { stroke-dashoffset: 0; transition-delay: 1.6s; }

/* Planes - hidden by default */
.globe-plane { opacity: 0; }
.globe-plane-1 {
  offset-path: path('M160,140 Q260,80 290,260');
  offset-rotate: auto;
}
.globe-plane-2 {
  offset-path: path('M280,170 Q310,210 290,260');
  offset-rotate: auto;
}
.globe-plane-3 {
  offset-path: path('M80,170 Q180,320 290,260');
  offset-rotate: auto;
}

/* Phase 2: Planes fly */
.globe-anim.animated .globe-plane-1 {
  animation: planeFly 2s ease forwards 0s;
}
.globe-anim.animated .globe-plane-2 {
  animation: planeFly 1.5s ease forwards 0.8s;
}
.globe-anim.animated .globe-plane-3 {
  animation: planeFly 2.2s ease forwards 1.6s;
}
@keyframes planeFly {
  0%   { offset-distance: 0%; opacity: 1; }
  85%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Landing pulse */
.globe-pulse { opacity: 0; }
.globe-anim.animated .globe-pulse {
  animation: globeLand 0.8s ease 3s forwards;
}
@keyframes globeLand {
  0%   { r: 4; opacity: 0.7; }
  100% { r: 25; opacity: 0; }
}

@media (max-width: 600px) {
  .globe-anim { max-width: 320px; }
}

/* ===== UNIVERSITY SHOWCASE (1 hero + scrolling strip) ===== */
/* ===== UNIVERSITY CAROUSEL ===== */
.uni-carousel {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uni-carousel-track {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,22,40,0.08);
  border: 1px solid var(--gray-200);
}
.uni-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
.uni-slide-active {
  opacity: 1;
}
.uni-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.uni-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.uni-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.uni-cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all 0.3s;
}
.uni-cdot-on {
  width: 22px;
  border-radius: 3px;
  background: var(--blue-500);
}

@media (max-width: 1080px) {
  .uni-carousel { max-width: 100%; }
}
@media (max-width: 600px) {
  .uni-carousel-track { height: 300px; }
  .uni-slide-label { font-size: 13px; padding: 10px 14px; }
}

/* Partner collage - 5-image asymmetric layout */
.partner-collage {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  height: 400px;
}
.partner-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.partner-col-left {
  flex: 1.1;
}
.partner-col-right {
  flex: 0.9;
}
.partner-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.partner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-img:hover img {
  transform: scale(1.06);
}
/* Left column: 2 images, top one taller */
.partner-img-1 { flex: 1.3; }
.partner-img-2 { flex: 0.7; }
/* Right column: 3 images, middle one slightly taller */
.partner-img-3 { flex: 0.8; }
.partner-img-4 { flex: 1.2; }
.partner-img-5 { flex: 0.8; }

/* Staggered reveal animation */
.partner-img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.visible .partner-img-1 { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.visible .partner-img-2 { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.visible .partner-img-3 { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.visible .partner-img-4 { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.visible .partner-img-5 { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* Animation containers */
.anim-container {
  width: 100%;
  max-width: 440px;
  min-height: 340px;
  max-height: 400px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.pathway-slide:nth-child(even) .anim-container { background: var(--white); }

/* Step flow */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  flex: 1;
  justify-content: center;
}
.step-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.6s cubic-bezier(0.22,1,0.36,1);
  opacity: 0;
  transform: translateX(-20px);
}
.step-node.active {
  opacity: 1;
  transform: translateX(0);
  background: var(--blue-50);
}
.step-node-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.step-node-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}
.step-node-sub {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}
.step-connector {
  width: 2px;
  height: 16px;
  background: var(--gray-200);
  margin-left: 29px;
  transition: background 0.4s;
  position: relative;
}
.step-connector.active { background: var(--blue-400); }
.step-connector.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 4px;
  height: 100%;
  background: var(--blue-400);
  border-radius: 2px;
  animation: connectorFill 0.6s ease forwards;
}

/* Points gauge */
.points-gauge {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}
.gauge-ring {
  width: 160px;
  height: 160px;
  position: relative;
}
.gauge-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gauge-ring circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}
.gauge-bg { stroke: var(--gray-200); }
.gauge-fill {
  stroke: var(--blue-500);
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  transition: stroke-dashoffset 2s cubic-bezier(0.22,1,0.36,1);
}
.gauge-fill.animate { stroke-dashoffset: 150; }
.gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-900);
}
.gauge-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}
.gauge-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.gauge-factor {
  padding: 6px 14px;
  background: var(--blue-50);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-700);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gauge-factor.show {
  opacity: 1;
  transform: translateY(0);
}

/* Map animation */
.map-anim {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.map-svg { width: 100%; max-width: 380px; }

/* Merge pins animation */
.merge-anim {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 24px;
  flex-direction: column;
}
.pins-row {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 1.2s cubic-bezier(0.22,1,0.36,1);
}
.pin-overseas { background: var(--gray-200); color: var(--gray-500); }
.pin-aus { background: var(--blue-100); color: var(--blue-600); }
.pin-merged {
  display: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: white;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,99,235,0.3);
}
.pins-line {
  width: 60px;
  height: 2px;
  background: var(--gray-300);
  position: relative;
  overflow: hidden;
}
.pins-line-fill {
  width: 0;
  height: 100%;
  background: var(--blue-400);
  transition: width 1s ease;
}
.merge-timeline {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}
.merge-timeline.show {
  opacity: 1;
  transform: translateY(0);
}
.tl-step {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.tl-temp { background: var(--blue-50); color: var(--blue-600); }
.tl-arrow { color: var(--gray-400); font-size: 16px; }
.tl-perm { background: var(--green); color: var(--white); }
