/* ===== HERO ===== */
.itbank-hero { text-align: left; padding-bottom: 4rem; }
.itbank-hero::after { display: none; }

.itbank-hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.itbank-hero-text { flex: 1; }
.itbank-hero-text .page-hero-subtitle { margin: 0 0 1.75rem; }

.itbank-hero-img {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itbank-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .itbank-hero { text-align: center; }
  .itbank-hero-inner { flex-direction: column; }
  .itbank-hero-img { display: none; }
}

/* ===== SECTION IMAGES ===== */
.itbank-section-img {
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 0 auto 2.5rem;
  object-fit: contain;
  border-radius: 20px;
}

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-card {
  background: var(--zinc-50);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1.5px solid var(--zinc-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.profile-card-icon { line-height: 0; display: flex; flex-shrink: 0; align-items: center; }

.profile-card-desc {
  color: var(--zinc-600);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== DARK SECTION TWO-COL ===== */
.itbank-dark-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.itbank-dark-left { flex: 1 1 0; min-width: 0; }

.itbank-dark-img {
  flex: 1 1 0;
  display: flex;
  align-items: center;
}

.itbank-dark-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

.itbank-dark-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 900px) {
  .itbank-dark-inner { flex-direction: column; }
  .itbank-dark-img { display: none; }
  .itbank-dark-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
