:root {
  --staj-navy: #082a46;
  --staj-ink: #0a2540;
  --staj-blue: #24a9df;
  --staj-blue-dark: #12629b;
  --staj-muted: #6b7c93;
  --staj-soft: #f6f9fc;
  --staj-line: #e6edf5;
  --staj-green: #19c37d;
  --staj-warning: #fff6db;
  --staj-warning-border: #f3d37b;
  --staj-shadow: 0 28px 80px rgba(8,42,70,.14);
  --staj-shadow-soft: 0 14px 40px rgba(8,42,70,.07);
}

/* Buttons */
.staj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 28px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.staj-btn-primary {
  background: var(--staj-blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(36,169,223,.28);
}
.staj-btn-primary:hover { background: #1897c8; color: #fff; }
.staj-btn-secondary {
  border: 1px solid #dce6f1;
  background: #fff;
  color: #24384f;
  box-shadow: 0 12px 30px rgba(8,42,70,.06);
}
.staj-btn-secondary:hover { background: #f6f9fc; color: #24384f; }

/* Kicker */
.staj-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--staj-blue-dark);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}
.staj-kicker i {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--staj-green);
  box-shadow: 0 0 0 6px rgba(25,195,125,.12);
  flex: 0 0 9px;
}

/* Hero */
.staj-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 8%, rgba(36,169,223,.12), transparent 30%),
              radial-gradient(circle at 90% 12%, rgba(8,42,70,.08), transparent 24%),
              linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: 64px 0 106px;
}
.staj-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 82px;
  background: #fff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}
.staj-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 46px;
  align-items: center;
}
.staj-hero h1 {
  margin: 0;
  color: var(--staj-ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -.06em;
  font-weight: 900;
}
.staj-lead {
  margin: 24px 0 0;
  color: #4f6177;
  font-size: 19px;
  line-height: 1.68;
  max-width: 720px;
}
.staj-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Hero card */
.staj-hero-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226,236,246,.96);
  border-radius: 36px;
  box-shadow: var(--staj-shadow);
  padding: 28px;
  overflow: hidden;
  position: relative;
}
.staj-hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36,169,223,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,169,223,.07) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .72;
}
.staj-hero-card > * { position: relative; z-index: 2; }

/* Status list */
.staj-status-list { display: grid; gap: 14px; }
.staj-status-item {
  background: #fff;
  border: 1px solid var(--staj-line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(8,42,70,.07);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}
.staj-status-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #ecf8fd;
  color: var(--staj-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex: 0 0 44px;
}
.staj-status-item strong {
  display: block;
  font-size: 17px;
  letter-spacing: -.035em;
}
.staj-status-item span {
  display: block;
  margin-top: 5px;
  color: var(--staj-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Content section */
.staj-section {
  padding: 76px 0;
  background: #fff;
}
.staj-section-soft { background: var(--staj-soft); }

/* Layout */
.staj-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 30px;
  align-items: start;
}

/* Sidebar */
.staj-sidebar {
  position: sticky;
  top: calc(var(--nav-h, 76px) + 24px);
  background: #fff;
  border: 1px solid var(--staj-line);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(8,42,70,.06);
}
.staj-sidebar strong {
  display: block;
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--staj-ink);
}
.staj-sidebar a {
  display: block;
  color: #637386;
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 0;
  border-top: 1px solid #eef3f8;
  font-weight: 800;
  text-decoration: none;
}
.staj-sidebar a:hover { color: var(--staj-blue-dark); }

/* FAQ groups */
.staj-faq-group { margin-bottom: 28px; }
.staj-faq-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -.05em;
  color: var(--staj-ink);
}
.staj-faq-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #ecf8fd;
  color: var(--staj-blue-dark);
  font-size: 14px;
  font-weight: 900;
  flex: 0 0 38px;
}

/* Accordion */
.staj-accordion { display: grid; gap: 12px; }
.staj-qa {
  background: #fff;
  border: 1px solid var(--staj-line);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(8,42,70,.055);
  overflow: hidden;
}
.staj-qa summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: #182c45;
  letter-spacing: -.025em;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 16px;
}
.staj-qa summary::-webkit-details-marker { display: none; }
.staj-qa summary::marker { display: none; }
.staj-qa summary:after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 99px;
  background: #ecf8fd;
  color: var(--staj-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.staj-qa[open] summary:after { content: "−"; }
.staj-qa-body {
  padding: 0 22px 22px;
  color: #516278;
  line-height: 1.72;
}
.staj-qa-body p { margin: 0 0 12px; }
.staj-qa-body ul { margin: 0; padding-left: 20px; }
.staj-qa-body li { margin: 7px 0; }

/* Warning box */
.staj-warning {
  background: var(--staj-warning);
  border: 1px solid var(--staj-warning-border);
  border-radius: 22px;
  padding: 18px;
  color: #5d4a12;
  line-height: 1.65;
  margin: 18px 0;
}

/* Info grid */
.staj-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.staj-info-box {
  background: #fbfdff;
  border: 1px solid var(--staj-line);
  border-radius: 18px;
  padding: 15px;
}
.staj-info-box small {
  display: block;
  color: var(--staj-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.staj-info-box strong {
  display: block;
  color: #172b45;
  font-size: 15px;
  line-height: 1.45;
}

/* Section head */
.staj-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}
.staj-section-head > span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--staj-blue-dark);
}
.staj-section-head h2 {
  margin: 12px 0 0;
  font-size: 38px;
  letter-spacing: -.05em;
  color: var(--staj-ink);
  line-height: 1.14;
}

/* Checklist */
.staj-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.staj-check-card {
  background: #fff;
  border: 1px solid var(--staj-line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--staj-shadow-soft);
}
.staj-check-card strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.035em;
  margin-bottom: 9px;
  color: var(--staj-ink);
}
.staj-check-card p {
  margin: 0;
  color: var(--staj-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Page CTA */
.staj-cta {
  position: relative;
  overflow: hidden;
  background: #082a46;
  color: #fff;
  padding: 90px 0 120px;
}
.staj-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/cubes-pattern.svg');
  background-size: 420px;
  opacity: .16;
}
.staj-cta:after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -72px;
  height: 120px;
  background: #fff;
  transform: rotate(-3deg);
  transform-origin: left top;
}
.staj-cta .mi-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.staj-cta h2 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -.05em;
  line-height: 1.1;
  color: #fff;
}
.staj-cta p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 1020px) {
  .staj-hero-grid,
  .staj-layout {
    grid-template-columns: 1fr;
  }
  .staj-sidebar {
    position: relative;
    top: 0;
  }
  .staj-checklist {
    grid-template-columns: 1fr 1fr;
  }
  .staj-cta .mi-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .staj-hero { padding: 40px 0 86px; }
  .staj-lead { font-size: 17px; }
  .staj-btn-row { flex-direction: column; }
  .staj-btn-row .staj-btn { width: 100%; text-align: center; justify-content: center; }
  .staj-hero-card { border-radius: 26px; padding: 18px; }
  .staj-section { padding: 56px 0; }
  .staj-section-head h2 { font-size: 30px; }
  .staj-faq-title { font-size: 22px; }
  .staj-info-grid,
  .staj-checklist { grid-template-columns: 1fr; }
  .staj-cta { padding: 70px 0 104px; }
  .staj-cta h2 { font-size: 30px; }
}
