
/* ---- Section wrapper ---- */
.sp-section { padding: 72px 0; }
.bg-white    { background: var(--au-white); }
.bg-surface  { background: var(--au-surface); }

.sp-section-header {
  text-align: center;
  margin-bottom: 44px;
}

/* =============================================
   HERO
============================================= */
.sp-hero {
  padding: 64px 0 56px;
  overflow: hidden;
  position: relative;
}
/* Gold hero (651) */
.gold-hero {
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 50%, #fffdf7 100%);
  border-bottom: 1px solid rgba(201,128,10,0.15);
}
/* Navy hero (601) */
.navy-hero {
  background: var(--au-navy);
}
.navy-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,185,66,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Eyebrow */
.sp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.gold-eyebrow { color: var(--au-gold); }
.navy-eyebrow { color: rgba(255,255,255,0.7); }

.sp-subclass-num {
  font-size: 22px;
  font-weight: 900;
  font-family: 'Fraunces', serif;
  line-height: 1;
  padding: 2px 12px 4px;
  border-radius: 8px;
}
.gold-eyebrow .sp-subclass-num {
  background: var(--au-gold);
  color: white;
}
.navy-eyebrow .sp-subclass-num {
  background: rgba(255,255,255,0.15);
  color: var(--au-gold-bright);
}
.navy-num { background: rgba(255,255,255,0.15); color: var(--au-gold-bright); }

/* Title */
.sp-hero-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--au-text);
}
.sp-hero-title em { font-style: italic; color: var(--au-gold); }
.navy-title { color: white; }
.navy-em { color: var(--au-gold-bright); }

/* Description */
.sp-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
  color: var(--au-text-mid);
}
.navy-hero .sp-hero-desc { color: rgba(255,255,255,0.72); }

/* Pills row */
.sp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 6px 14px;
  border-radius: 50px;
  background: white;
  color: var(--au-text);
  border: 1px solid var(--au-border);
}
.navy-pills .sp-pill,
.navy-hero .sp-pill {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

/* Buttons */
.sp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--au-gold);
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 13px 26px;
  border-radius: var(--au-radius-md);
  transition: all 0.2s;
  text-decoration: none;
}
.sp-btn-gold:hover { background: #a86a08; color: white; transform: translateY(-1px); }

.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 12px 22px;
  border-radius: var(--au-radius-md);
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid var(--au-gold);
  color: var(--au-gold);
  background: transparent;
}
.sp-btn-outline:hover { background: var(--au-gold-light); }

.navy-outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.navy-outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }

/* Hero side card */
.sp-hero-side { }

.sp-hero-card {
  border-radius: var(--au-radius-xl);
  overflow: hidden;
  box-shadow: var(--au-shadow-lg);
  border: 1px solid var(--au-border);
}
.sp-hero-card-head {
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.04em;
}
.gold-head  { background: var(--au-gold); color: white; }
.navy-head  { background: var(--au-navy); color: white; }
.navy-card  { border: 1px solid rgba(255,255,255,0.12); }

.sp-hero-card-body { background: white; padding: 4px 0; }

.sp-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid var(--au-border);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sp-info-row span { font-size: 12.5px; color: var(--au-text-light); font-weight: 500; }
.sp-info-row strong { font-size: 13px; font-weight: 700; color: var(--au-text); text-align: right; max-width: 55%; }
.sp-free  { color: var(--au-green) !important; }
.sp-no    { color: #dc2626 !important; }
.sp-navy-val { color: var(--au-navy) !important; }

/* =============================================
   WHAT IS IT — TEXT COLS
============================================= */
.sp-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.sp-text-cols p {
  font-size: 14.5px;
  color: var(--au-text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sp-note-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--au-radius-md);
  font-size: 13.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.65;
}
.sp-note-box i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.sp-note-box p { margin: 0; font-size: 13.5px; line-height: 1.65; }

.gold-note  { background: #fffbf0; border: 1.5px solid rgba(201,128,10,0.25); color: #6b4700; }
.gold-note i { color: var(--au-gold); }
.gold-note p { color: #6b4700; }

.info-note  { background: #eff8ff; border: 1.5px solid #b3d9f5; color: var(--au-text-mid); }
.info-note i { color: var(--au-blue); }

.navy-note  { background: var(--au-navy-light); border: 1.5px solid rgba(0,51,122,0.15); color: var(--au-text-mid); }
.navy-note i { color: var(--au-navy); }

/* =============================================
   COUNTRY GRID
============================================= */
.sp-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 36px;
}
.sp-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-md);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-text);
  transition: all 0.15s;
}
.sp-country-item:hover { border-color: var(--au-navy); background: var(--au-navy-light); color: var(--au-navy); }
.sp-country-item img {
  width: 26px; height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.sp-country-note {
  font-size: 12.5px;
  color: var(--au-text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  margin-top: 20px;
}
.sp-country-note a { color: var(--au-blue); font-weight: 700; }

/* =============================================
   REQUIREMENTS GRID
============================================= */
.sp-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.sp-req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-md);
  padding: 20px;
  transition: all 0.2s;
}
.sp-req-item:hover { background: white; box-shadow: var(--au-shadow-sm); }
.sp-req-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--au-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.gold-icon { background: var(--au-gold-light); color: var(--au-gold); }
.navy-icon { background: var(--au-navy-light); color: var(--au-navy); }
.sp-req-item h6 { font-size: 14px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 5px; }
.sp-req-item p  { font-size: 13px; color: var(--au-text-mid); margin: 0; line-height: 1.6; }

/* =============================================
   STEPS
============================================= */
.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
}
.sp-steps::before {
  content: '';
  position: absolute;
  left: 19px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--au-gold) 0%, var(--au-border) 100%);
}
.navy-step + .navy-step::before,
.sp-steps.navy-steps::before {
  background: linear-gradient(180deg, var(--au-navy) 0%, var(--au-border) 100%);
}
.sp-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.sp-step h5 { font-size: 15px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 6px; }
.sp-step p  { font-size: 13.5px; color: var(--au-text-mid); margin: 0; line-height: 1.65; }
.sp-step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white;
  box-shadow: 0 0 0 5px white;
}
.gold-num { background: var(--au-gold); }
.navy-num { background: var(--au-navy); }

/* =============================================
   SERVICE LIST
============================================= */
.sp-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
  background: white;
}
.sp-service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--au-border);
  transition: background 0.15s;
}
.sp-service-item:last-child { border-bottom: none; }
.sp-service-item:hover { background: var(--au-surface); }
.sp-service-item i { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.gold-check { color: var(--au-gold); }
.navy-check { color: var(--au-navy); }
.sp-service-item strong { display: block; font-size: 13.5px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 3px; }
.sp-service-item p { font-size: 12.5px; color: var(--au-text-mid); margin: 0; line-height: 1.5; }

/* =============================================
   FEE CARD
============================================= */
.sp-fee-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: var(--au-radius-xl);
  overflow: hidden;
  box-shadow: var(--au-shadow-md);
  border: 1px solid var(--au-border);
  margin-bottom: 16px;
}
.gold-fee-card .sp-fee-left { background: linear-gradient(135deg, var(--au-gold) 0%, #a86a08 100%); }
.navy-fee-card .sp-fee-left { background: linear-gradient(135deg, var(--au-navy) 0%, var(--au-navy-dark) 100%); }

.sp-fee-left {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sp-fee-badge {
  font-size: 11px; font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.navy-badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.sp-fee-price {
  font-size: 15px; color: rgba(255,255,255,0.8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 6px;
}
.sp-fee-price strong { font-size: 48px; font-weight: 900; color: white; line-height: 1; }
.navy-price strong { color: var(--au-gold-bright); }

.sp-fee-note { font-size: 12px; color: rgba(255,255,255,0.65); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.5; margin: 0; }

.sp-fee-right {
  background: white;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-fee-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--au-border);
  font-size: 13.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sp-fee-line:last-child { border-bottom: none; }
.sp-fee-line span:first-child { color: var(--au-text-mid); }
.sp-incl { font-size: 12px; font-weight: 700; background: #f0fdf5; color: var(--au-green); padding: 2px 10px; border-radius: 50px; }
.sp-free-tag { font-size: 12px; font-weight: 700; background: var(--au-gold-light); color: var(--au-gold); padding: 2px 10px; border-radius: 50px; }
.sp-fee-total { border-top: 2px solid var(--au-border) !important; border-bottom: none !important; padding-top: 16px !important; margin-top: 4px; }
.sp-fee-total span { font-size: 15px; font-weight: 800; color: var(--au-text); }
.sp-fee-total strong { font-size: 22px; font-weight: 900; color: var(--au-navy); }

.sp-fee-disclaimer {
  font-size: 12.5px;
  color: var(--au-text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
}
.sp-fee-disclaimer a { color: var(--au-blue); font-weight: 700; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .sp-hero-inner  { grid-template-columns: 1fr; }
  .sp-text-cols   { grid-template-columns: 1fr; }
  .sp-fee-card    { grid-template-columns: 1fr; }
  .sp-fee-left    { padding: 28px 24px; }
  .sp-fee-right   { padding: 24px 24px; }
  .sp-req-grid    { grid-template-columns: 1fr; }
  .sp-steps::before { display: none; }
}
@media (max-width: 767px) {
  .sp-section   { padding: 52px 0; }
  .sp-hero      { padding: 48px 0 40px; }
  .sp-hero-title { font-size: 28px; }
  .sp-hero-pills { gap: 6px; }
  .sp-pill       { font-size: 11px; padding: 5px 10px; }
  .sp-country-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .sp-hero-btns  { flex-direction: column; }
  .sp-btn-gold, .sp-btn-outline { justify-content: center; }
}

/* =============================================
   WHO WE ARE SECTION
============================================= */
.sp-who-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.sp-who-text p {
  font-size: 14.5px;
  color: var(--au-text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.sp-who-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-gold);
  margin-top: 6px;
  transition: color 0.15s;
}
.sp-who-link:hover { color: #a86a08; }
.navy-who-link { color: var(--au-navy); }
.navy-who-link:hover { color: var(--au-navy-dark); }

.sp-who-notice {
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
}
.sp-who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--au-border);
  transition: background 0.15s;
}
.sp-who-item:hover { background: white; }
.sp-who-item i {
  font-size: 18px;
  color: var(--au-gold-bright);
  flex-shrink: 0;
  margin-top: 1px;
}
.sp-who-item p {
  font-size: 13.5px;
  color: var(--au-text-mid);
  margin: 0;
  line-height: 1.65;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* =============================================
   FAQ SECTION
============================================= */
.sp-faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* Left */
.sp-faq-left { position: sticky; top: 88px; }

.sp-faq-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  font-family: 'Fraunces', serif;
  color: var(--au-text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.sp-faq-title em { font-style: italic; color: var(--au-gold); }
.navy-faq-em { color: var(--au-blue) !important; }

.sp-faq-desc {
  font-size: 14px;
  color: var(--au-text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sp-faq-help {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  padding: 20px;
}
.sp-faq-help-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--au-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.gold-faq-icon { background: var(--au-gold-light); color: var(--au-gold); }
.navy-faq-icon { background: var(--au-navy-light); color: var(--au-navy); }

.sp-faq-help strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-text);
  margin-bottom: 4px;
}
.sp-faq-help p {
  font-size: 12.5px;
  color: var(--au-text-mid);
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sp-btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-gold);
  padding: 7px 14px;
  border: 1.5px solid var(--au-gold);
  border-radius: var(--au-radius-sm);
  transition: all 0.2s;
  text-decoration: none;
}
.sp-btn-gold-sm:hover { background: var(--au-gold); color: white; }

.sp-btn-navy-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-navy);
  padding: 7px 14px;
  border: 1.5px solid var(--au-navy);
  border-radius: var(--au-radius-sm);
  transition: all 0.2s;
  text-decoration: none;
}
.sp-btn-navy-sm:hover { background: var(--au-navy); color: white; }

/* Accordion */
.sp-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
  box-shadow: var(--au-shadow-sm);
}
.sp-acc-item {
  border-bottom: 1px solid var(--au-border);
  background: var(--au-white);
}
.sp-acc-item:last-child { border-bottom: none; }

.sp-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 22px;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.15s;
}
.sp-acc-btn:hover { background: var(--au-surface); }
.sp-acc-btn[aria-expanded="true"].gold-open,
.sp-accordion:has(.gold-acc-body.show) .sp-acc-btn[aria-expanded="true"] {
  background: var(--au-gold-light);
}
.sp-accordion:has(.navy-acc-body.show) .sp-acc-btn[aria-expanded="true"] {
  background: var(--au-navy-light);
}
.sp-acc-btn[aria-expanded="true"] { background: var(--au-surface); }

.sp-acc-btn span {
  font-size: 14px;
  font-weight: 700;
  color: var(--au-text);
  line-height: 1.4;
  flex: 1;
}
.sp-acc-icon {
  font-size: 17px;
  color: var(--au-text-light);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.sp-acc-btn[aria-expanded="true"] .sp-acc-icon {
  transform: rotate(45deg);
  color: var(--au-navy);
}
.sp-acc-body {
  padding: 0 22px 16px;
}
.gold-acc-body { background: var(--au-gold-light); }
.navy-acc-body { background: var(--au-navy-light); }
.sp-acc-body p {
  font-size: 13.5px;
  color: var(--au-text-mid);
  line-height: 1.75;
  margin: 0;
  padding-top: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .sp-who-inner  { grid-template-columns: 1fr; gap: 32px; }
  .sp-faq-inner  { grid-template-columns: 1fr; gap: 32px; }
  .sp-faq-left   { position: static; }
}
@media (max-width: 767px) {
  .sp-acc-btn    { padding: 14px 18px; }
  .sp-acc-body   { padding: 0 18px 14px; }
}

/* =============================================
   WHO CAN APPLY
============================================= */
.sp-who-can-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
  align-items: start;
}
.sp-who-can-left p {
  font-size: 14.5px; color: var(--au-text-mid);
  line-height: 1.8; margin-bottom: 16px;
}
.sp-who-can-box {
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
}
.sp-who-can-head {
  padding: 14px 20px;
  font-size: 13px; font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.04em;
}
.gold-can-head { background: var(--au-gold-light); color: var(--au-gold); border-bottom: 1px solid rgba(201,128,10,0.15); }
.navy-can-head { background: var(--au-navy-light); color: var(--au-navy); border-bottom: 1px solid rgba(0,51,122,0.12); }

.sp-who-can-list {
  list-style: none; padding: 0; margin: 0;
}
.sp-who-can-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 20px;
  border-bottom: 1px dashed var(--au-border);
  font-size: 13.5px; color: var(--au-text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.55;
}
.sp-who-can-list li:last-child { border-bottom: none; }
.sp-who-can-list li i { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.gold-can-list li i { color: var(--au-gold); }
.navy-can-list li i { color: var(--au-navy); }

/* Key conditions list */
.sp-conditions-box {
  border-radius: var(--au-radius-md);
  padding: 20px 22px;
  margin-top: 20px;
  border: 1.5px solid;
}
.gold-cond-box { background: #fffbf0; border-color: rgba(201,128,10,0.2); }
.navy-cond-box { background: var(--au-navy-light); border-color: rgba(0,51,122,0.15); }
.sp-conditions-box h6 {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 14px;
}
.gold-cond-box h6 { color: var(--au-gold); }
.navy-cond-box h6 { color: var(--au-navy); }
.sp-cond-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.sp-cond-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--au-text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.55;
}
.sp-cond-list li i { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.gold-cond-box .sp-cond-list li i { color: var(--au-gold); }
.navy-cond-box .sp-cond-list li i { color: var(--au-navy); }

/* =============================================
   PROCESSING TIME & OUTCOMES — subpage style
============================================= */
.sp-process-section { padding: 72px 0; background: var(--au-white); }
.sp-process-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.sp-process-card {
  border-radius: var(--au-radius-lg);
  padding: 28px 24px; height: 100%;
}
.sp-process-card.sp-time    { background: var(--au-gold-light); border: 1.5px solid rgba(201,128,10,0.2); }
.sp-process-card.sp-navy-time { background: var(--au-navy-light); border: 1.5px solid rgba(0,51,122,0.15); }
.sp-process-card.sp-delay   { background: #fffbf0; border: 1.5px solid rgba(232,160,32,0.25); }
.sp-process-card.sp-outcome { background: #f0fdf6; border: 1.5px solid rgba(26,122,74,0.2); }

.sp-process-head {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sp-process-icon {
  width: 44px; height: 44px; border-radius: var(--au-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.sp-time .sp-process-icon    { background: rgba(201,128,10,0.15); color: var(--au-gold); }
.sp-navy-time .sp-process-icon { background: rgba(0,51,122,0.12); color: var(--au-navy); }
.sp-delay .sp-process-icon   { background: rgba(232,160,32,0.15); color: #c9800a; }
.sp-outcome .sp-process-icon { background: rgba(26,122,74,0.1); color: var(--au-green); }
.sp-process-head h5 {
  font-size: 15px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif; margin: 0;
}
.sp-process-card > p { font-size: 13.5px; color: var(--au-text-mid); line-height: 1.7; margin-bottom: 10px; }
.sp-process-card ul { list-style: none; padding: 0; margin: 0; }
.sp-process-card ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--au-text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 6px 0; border-bottom: 1px dashed rgba(0,0,0,0.07);
  line-height: 1.6;
}
.sp-process-card ul li:last-child { border-bottom: none; }
.sp-process-card ul li i { flex-shrink: 0; margin-top: 2px; color: #c9800a; }
.sp-outcome-row { display: flex; flex-direction: column; gap: 10px; }
.sp-outcome-item {
  background: white; border-radius: var(--au-radius-sm);
  padding: 12px 14px; font-size: 13px;
  border: 1px solid rgba(0,0,0,0.05); color: var(--au-text-mid); line-height: 1.6;
}
.sp-outcome-item strong {
  display: block; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 5px;
}
.sp-outcome-item.sp-approved strong { color: var(--au-green); }
.sp-outcome-item.sp-declined strong { color: var(--au-navy); }
.sp-outcome-item.sp-rejected strong { color: #dc2626; }

/* Responsive */
@media (max-width: 991px) {
  .sp-who-can-grid { grid-template-columns: 1fr; }
  .sp-process-cols { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .sp-process-section { padding: 52px 0; }
}


/* =============================================
   VISA STREAMS SECTION — visitor-visa600.php
============================================= */
.sp-streams-section { border-bottom: 1px solid var(--au-border); }

.sp-streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* 5th card: span 3 cols on desktop → centred as a single wide card */
.sp-streams-grid .sp-stream-card:last-child {
  grid-column: 2 / 3;
}

.sp-stream-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-md);
  padding: 22px 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.sp-stream-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--au-navy);
  transform: scaleY(0);
  transition: transform 0.2s;
  transform-origin: top;
}
.sp-stream-card:hover::before { transform: scaleY(1); }
.sp-stream-card:hover {
  background: var(--au-white);
  border-color: rgba(0,51,122,0.22);
  box-shadow: var(--au-shadow-sm);
  transform: translateY(-2px);
}

.sp-stream-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--au-navy-light);
  color: var(--au-navy);
  border-radius: var(--au-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.sp-stream-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-navy);
  background: var(--au-navy-light);
  border: 1px solid rgba(0,51,122,0.12);
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.sp-stream-body h5 {
  font-size: 14px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-text);
  margin-bottom: 7px;
}
.sp-stream-body p {
  font-size: 13px;
  color: var(--au-text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .sp-streams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-streams-grid .sp-stream-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sp-streams-grid {
    grid-template-columns: 1fr;
  }
  .sp-streams-grid .sp-stream-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}